-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (40 loc) · 1.37 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
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup
setup(
name='alpakka',
description="Cutest YANG Eater alive",
author="ADVA Optical Networking",
maintainer="Thomas Szyrkowiec",
maintainer_email="tszyrkowiec@advaoptical.com",
license="Apache License 2.0",
setup_requires=open('requirements.setup.txt'),
install_requires=['pyang', 'path.py', 'ipython'],
use_scm_version={'local_scheme': 'dirty-tag'},
packages=[
'alpakka',
'alpakka.pyang_plugins',
'alpakka.wrapper',
'alpakka.wools',
],
entry_points={
'console_scripts': ['alpakka=alpakka:run'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
'Topic :: Software Development :: Code Generators',
'Topic :: Utilities',
],
keywords=[
'alpakka', 'yang', 'pyang', 'wool', 'wools',
],
)