forked from elliottcordo/HAMB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.25 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
#!/usr/bin/env python
"""
setuptools install script.
"""
import os
import re
from setuptools import setup, find_packages
requires = [
"datacoco-core==0.1.1",
"datacoco-cloud==0.1.9",
"datacoco-db==0.1.8",
"datacoco-email-tools==0.1.3",
"datacoco-ftp-tools==0.1.3",
"datacoco-secretsmanager==0.1.4",
"pyyaml>=4.2b1",
"slackclient==1.3.0",
"redis==2.10.6",
"pandas==0.24.2"
]
def get_version():
version_file = open(os.path.join("hamb", "__version__.py"))
version_contents = version_file.read()
return re.search('__version__ = "(.*?)"', version_contents).group(1)
setup(
name="hamb",
version=get_version(),
author="Equinox Fitness",
description="",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
url="https://github.com/equinoxfitness/HAMB",
license="TBD",
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
install_requires=requires,
scripts=['bin/hamb'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
)