-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (30 loc) · 1.06 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
import os
from setuptools import setup, find_packages
from install.versioning import maintain_version
def readme(filename):
return open(filename).read()
setup(name='tfopgen',
description='Generates tensorflow custom operator boilerplate',
long_description=readme('README.rst'),
url='',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
author='Simon Perkins',
author_email='[email protected]',
license='',
packages=find_packages(),
include_package_data=True,
install_requires=[
'jinja2 >= 2.8.0',
'numpy >= 1.12.0',
'ruamel.yaml >= 0.13.7'
],
scripts=[os.path.join('tfopgen', 'bin', 'tfopgen')],
version=maintain_version(os.path.join('tfopgen', 'version.py')),
zip_safe=True)