Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
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",