-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (48 loc) · 1.75 KB
/
setup.py
File metadata and controls
55 lines (48 loc) · 1.75 KB
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
49
50
51
52
53
54
55
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
def read(filename):
with open(filename, "r") as f:
return f.read()
COMMAND_NAME = 'snmpagent-unity'
setup(
name=COMMAND_NAME,
version=__import__('snmpagent_unity').__version__,
description=(
'Dell EMC Unity SNMP Off-Array Agent.'
),
long_description=read('README.rst'),
author='Yong Huang',
author_email='yong.huang@dell.com',
maintainer='Yong Huang',
maintainer_email='yong.huang@dell.com',
license='Apache Software License',
package_data={'snmpagent_unity': ['mib_files/*']},
packages=find_packages(exclude=('snmpagent_unity.tests',
'snmpagent_unity.comptests')),
platforms=["all"],
url='http://github.com/emc-openstack/{}'.format(COMMAND_NAME),
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
],
install_requires=read('./requirements.txt').splitlines(),
tests_require=read('./test-requirements.txt').splitlines(),
entry_points={
'console_scripts': [
'{}=snmpagent_unity.cli:main'.format('snmpagent-unity'),
],
},
scripts=[],
)