-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·42 lines (33 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·42 lines (33 loc) · 1.05 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
#!/usr/bin/python
import os
import sys
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = []
setup(
name = "pyucsm",
version = "0.1.7a2",
description = "Client library for Cisco UCS XML API",
long_description = read('README'),
url = 'https://github.com/chemikadze/pyucsm',
license = 'Apache',
author = 'Nikolay Sokolov',
author_email = 'nsokolov@griddynamics.com',
py_modules = ['pyucsm', 'ucsmquery'],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires = requirements,
tests_require = ["unittest"],
test_suite = "",
entry_points = {
'console_scripts': ['ucsmquery = ucsmquery:main']
}
)