-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 752 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 752 Bytes
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
from setuptools import setup, find_packages
VERSION = "0.2.3"
with open("README.md") as f:
LONG_DESCRIPTION = f.read()
setup(
name="tf-inputs",
version=VERSION,
author="Daniel Watson",
author_email="daniel.watson@nyu.edu",
url="https://github.com/danielwatson6/tf-inputs.git",
description="Input pipelines for TensorFlow that make sense.",
long_description=LONG_DESCRIPTION,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
],
package_dir={"": "src"},
packages=find_packages("src"),
# install_requires=open("requirements.txt").read().split(),
)