-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
42 lines (37 loc) · 1.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
import os, sys, pdb
from setuptools import setup, find_packages
PKG_NAME = "pyslide"
VERSION = "0.5.0"
DESCRIPTION = "Python whole slide image analysis toolkit"
HOMEPAGE = "https://github.com/PingjunChen/pyslide"
LICENSE = "MIT"
AUTHOR_NAME = "Pingjun Chen"
AUTHOR_EMAIL = "[email protected]"
REQS = ""
with open('requirements.txt') as f:
REQS = f.read().splitlines()
CLASSIFIERS = [
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
]
args = dict(
name=PKG_NAME,
version=VERSION,
description=DESCRIPTION,
url=HOMEPAGE,
license=LICENSE,
author=AUTHOR_NAME,
author_email=AUTHOR_EMAIL,
packages=find_packages(),
install_requires=REQS,
classifiers= CLASSIFIERS,
)
setup(**args)