-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
30 lines (25 loc) · 827 Bytes
/
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
import os
import setuptools
VERSION = os.environ["NN_TILDE_VERSION"]
with open("README.md", "r") as readme:
readme = readme.read()
with open("requirements.txt", "r") as requirements:
requirements = requirements.read()
setuptools.setup(
name="nn_tilde",
version=VERSION,
author="Antoine CAILLON",
author_email="caillon@ircam.fr",
description="Set of tools to create nn_tilde compatible models.",
long_description=readme,
long_description_content_type="text/markdown",
packages=['nn_tilde'],
package_dir={'nn_tilde': 'python_tools'},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=requirements.split("\n"),
python_requires='>=3.7',
)