-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
35 lines (32 loc) · 1.15 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
from setuptools import setup
import os
from tftracer.version import __version__
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), "README.md"), "r") as fp:
long_description = fp.read()
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), "requirements.txt"), "r") as fp:
requirements = fp.read().split("\n")
setup(
name='tensorflow-tracer',
version=__version__,
packages=['tftracer'],
url='https://github.com/xldrx/tensorflow-tracer',
license='Apache-2.0',
author='Sayed Hadi Hashemi',
author_email='[email protected]',
description='Runtime Tracing Library for TensorFlow',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'tftracer=tftracer.__main__:main',
],
},
install_requires=requirements,
package_data={'tftracer': ['resources/*/*']},
)