-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (18 loc) · 745 Bytes
/
setup.py
File metadata and controls
23 lines (18 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
def readme():
with open('README.md', 'r') as info:
return info.read()
setup(name='datagen',
version='0.1.0',
description=('A package to extract and analyse a dataset of all-beta '
'protein structures from the CATH or SCOPe database'),
long_description=readme(),
url='https://github.com/kls93/DataGen',
author='Kathryn Shelley',
author_email='kathryn.l.shelley@gmail.com',
classifiers=['Programming Language :: Python :: 3.6'],
packages=find_packages(),
install_requires=['pandas', 'matplotlib', 'networkx'],
entry_points={'console_scripts': ['datagen=datagen.datagen:main']},
zip_safe=False
)