-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (31 loc) · 992 Bytes
/
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
from setuptools import setup
import re
with open('ggd/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
requires = ["pyyaml"]
setup(
name="ggd",
version=version,
description="CLI for gogetdata (ggd)",
long_description=open("README.md").read(),
author="Michael Cormier, GGD Team",
author_email="[email protected]",
url="https://github.com/gogetdata/ggd-cli",
packages=['ggd', 'ggd.tests'],
package_data={"": ['LICENSE', 'README.md']},
package_dir={'ggd': 'ggd'},
include_package_data=True,
install_requires=requires,
license='MIT',
zip_safe=False,
entry_points={
'console_scripts': [
'ggd = ggd.__main__:main'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics']
)