-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
62 lines (58 loc) · 1.67 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import setuptools
import os
import eisd
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
# with open(path.join(here, 'README.md')) as f:
# long_description = f.read()
if __name__ == "__main__":
setuptools.setup(
name='eisd',
version=eisd.__version__,
author='James Lincoff, THGLab',
author_email='[email protected]',
project_urls={
'Source': 'https://github.com/THGLab/eisd'
},
description=
'Experimental Inferential Structure Determination',
# long_description=long_description,
scripts=['script/eisdshell'],
keywords=[
'Bayesian Optimization', 'Intrinsically Disordered Proteins'
],
license='MIT',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'numpy', 'pandas'
],
extras_require={
'docs': [
'sphinx',
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
'nbsphinx'
],
'tests': [
'pytest',
'pytest-cov',
'pytest-pep8',
'tox',
],
},
tests_require=[
'pytest',
'pytest-cov',
'pytest-pep8',
'tox',
],
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
],
zip_safe=False,
)