-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (41 loc) · 1.75 KB
/
setup.py
File metadata and controls
49 lines (41 loc) · 1.75 KB
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
43
44
45
46
47
48
49
import sys
from pathlib import Path
from setuptools import setup
base_dir = Path(__file__).absolute().parent
sys.path.insert(0, str(base_dir / 'proMAD'))
import config # import proMAD config without triggering the module __init__.py
read_me = base_dir / 'README.md'
long_description = read_me.read_text(encoding='utf-8')
version = config.version
setup(name=config.app_name,
version=version,
description='Semiquantitative densitometric measurement of protein microarrays',
long_description=long_description,
long_description_content_type='text/markdown',
url=config.url,
download_url=f'https://github.com/theia-dev/proMAD/archive/v{version}.zip',
author=config.app_author,
author_email='',
license='MIT',
packages=['proMAD'],
include_package_data=True,
install_requires=['numpy', 'matplotlib', 'scipy', 'scikit-image', 'imageio',
'openpyxl', 'requests', 'ipython', 'xmltodict', 'jinja2',
'pylatexenc'],
zip_safe=True,
keywords=['protein', 'microarrays', 'densitometric'],
python_requires='~=3.6',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only'
],
)