-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·33 lines (31 loc) · 1.07 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
from setuptools import setup, find_packages
setup(
name='afpdb',
version='0.2.3',
description='A Numpy-based PDB structure manipulation package',
url='https://github.com/data2code/afpdb',
author='Yingyao Zhou',
author_email='yingyao.zhou@novartis.com',
license= 'MIT',
python_requires=">=3.7",
zip_safe=False,
package_dir={'': 'src'},
#packages=find_packages(where='src'),
packages=["afpdb","afpdb.mycolabfold","afpdb.myalphafold","afpdb.myalphafold.common","afpdb.mycolabdesign"],
install_requires=['pandas',
'numpy',
'scipy',
'biopython',
'dm-tree',
'py3Dmol',
'tabulate',
'requests'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
],
)