-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (28 loc) · 1004 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
# -*- coding: utf-8 -*-
'''
Created on 2018. 10. 22.
@author: Hyechurn Jang, <[email protected]>
'''
import os
from setuptools import setup
def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='acidipy',
version='0.13.0',
license='Apache 2.0',
author='Hyechurn Jang',
author_email='[email protected]',
url='https://github.com/HyechurnJang/acidipy',
description='Cisco ACI Developing Interface for PYthon',
long_description=read('README'),
packages=['acidipy'],
install_requires=['jzlib', 'gevent', 'pygics', 'pyaml', 'requests', 'websocket-client'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
]
)