-
Notifications
You must be signed in to change notification settings - Fork 58
/
setup.py
51 lines (45 loc) · 1.73 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
49
50
51
#!/usr/bin/env python
import codecs
import re
import sys
import proxmoxer
import os
from setuptools import setup
if not os.path.exists('README.txt') and 'sdist' in sys.argv:
with codecs.open('README.rst', encoding='utf8') as f:
rst = f.read()
code_block = '(:\n\n)?\.\. code-block::.*'
rst = re.sub(code_block, '::', rst)
with codecs.open('README.txt', encoding='utf8', mode='wb') as f:
f.write(rst)
try:
readme = 'README.txt' if os.path.exists('README.txt') else 'README.rst'
long_description = codecs.open(readme, encoding='utf-8').read()
except:
long_description = 'Could not read README.txt'
setup(
name = 'proxmoxer',
version = proxmoxer.__version__,
description = 'Python Wrapper for the Proxmox 2.x API (HTTP and SSH)',
author = 'Oleg Butovich',
author_email = 'obutovich@gmail.com',
license = "MIT",
url = 'https://github.com/swayf/proxmoxer',
download_url = 'http://pypi.python.org/pypi/proxmoxer',
keywords = ['proxmox', 'api'],
packages=['proxmoxer', 'proxmoxer.backends', 'tests', 'tests.base'],
classifiers = [ #http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = long_description
)