-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 912 Bytes
/
setup.py
File metadata and controls
35 lines (33 loc) · 912 Bytes
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
from setuptools import setup
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='demask',
author='Daniel Munro',
author_email='dan@dmun.ro',
version='1.0',
description='Amino acid substitution impact prediction.',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/Singh-Lab/DeMaSk',
packages=['demask'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'configargparse',
'numpy',
],
extras_require={
'tests': [
],
'docs': [
'sphinx',
'sphinx_rtd_theme',
'sphinx_autodoc_typehints',
]
}
)