-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (33 loc) · 1.19 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
from setuptools import setup, find_packages
with open('./README.md') as f:
readme = f.read()
with open('./LICENSE') as f:
lic = f.read()
packages = find_packages()
setup(
name='ndpredict',
version='0.0.0',
description='ASN (N) Deamidation Predictor',
long_description=readme,
long_description_content_type="text/markdown",
author='Darian T. Yang',
author_email='dty7@pitt.edu',
py_modules=[],
install_requires=['numpy', 'matplotlib', 'sklearn', 'pandas', 'mdtraj', 'biopython'],
#url='https://github.com/darianyang/wedap',
#project_urls={'Documentation' : 'https://darianyang.github.io/wedap'},
license=lic,
#packages = find_packages(where = 'src'),
#Packages=find_packages(exclude="docs"),
#packages=find_packages(exclude="docs"),
#package_data={"wedap": ["styles/*"]},
#py_modules=["wedap"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Chemistry"
],
entry_points={"console_scripts" : ["ndpredict=ndpredict.__main__:main",
]}
)