-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·41 lines (36 loc) · 1.14 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
from setuptools import find_packages
from setuptools import setup
# package meta-data
NAME = 'sampling'
DESCRIPTION = 'Effective sampling methods within TensorFlow input functions.'
URL = 'https://github.com/teamdatatonic/tf-sampling.git'
AUTHOR = 'Will Fletcher and Laxmi Prajapat'
REQUIRES_PYTHON = '>=3.5.0'
VERSION = 0.1
# module package requirements
REQUIRED = [
'namedtupled>=0.3.3', 'docopt>=0.6.2', 'numpy>=1.14.5', 'gast==0.2.2',
'scipy>=1.1.0', 'pytest>=5.2.0', 'pytest-cov>=2.8.1',
'tensorflow==1.14.0', 'attrdict>=2.0.0', 'fastavro>=0.21.17',
'protobuf>=1.7.0', 'google-api-python-client>=1.7.6',
'google-cloud-storage>=1.13.0', 'google-cloud-bigquery>=1.7.0'
]
with open('./README.md') as f:
README = '\n' + f.read()
packages = find_packages()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=README,
author=AUTHOR,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=packages,
install_requires=REQUIRED,
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
],
)