-
Notifications
You must be signed in to change notification settings - Fork 93
/
setup.py
35 lines (34 loc) · 1017 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
31
32
33
34
35
import setuptools
from setuptools import setup
setup(
name='neu',
version='1.23.0.dev', # TODO: Must be consistent with nnabla version?
author='Sony Group Corporation',
author_email='[email protected]',
package_dir={"": "utils"},
packages=setuptools.find_packages(where="utils"),
scripts=[],
license='LICENSE',
description='Utility package for nnabla enhancement',
long_description=open('./utils/README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/sony/nnabla-examples/',
project_urls={
"nnabla": "https://nnabla.org/",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'neu_cli = neu.cli:main',
],
},
python_requires=">=3.6",
install_requires=[
"pyyaml",
"dominate",
],
)