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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
# pyinfra
# File: setup.py
# Desc: pyinfra package setup
from setuptools import setup, find_packages
INSTALL_REQUIRES = (
'gevent>1,<2',
'paramiko>1,<3',
'docopt<1',
'colorama<1',
'termcolor>1,<2',
'jinja2>2,<3',
'python-dateutil>2,<3',
'six>1,<2',
)
TEST_REQUIRES = (
'nose==1.3.7',
'jsontest==1.2',
'coverage==4.0.3',
'mock==1.3.0',
)
DEV_REQUIRES = TEST_REQUIRES + (
# Releasing
'wheel',
'twine==1.8.1',
# Dev debugging
'ipdb',
'ipdbplugin',
# Dev docs requirements
'sphinx==1.3.1',
'sphinx-autobuild==0.5.2',
# Convert markdowns to rst for long_description
'pypandoc==1.3.3',
)
# Extract version info without importing entire pyinfra package
version_data = {}
with open('pyinfra/version.py') as f:
exec(f.read(), version_data)
# Get the long_description from the README, hopefully as rst
long_description = open('README.md', 'r').read()
try:
from pypandoc import convert_text
# Strip out the example image because pypi's RST processing ignores width
long_description = '\n'.join(
line for line in long_description.split('\n')
if line not in (
'When you run pyinfra you\'ll see something like:',
'',
)
)
long_description = convert_text(long_description, 'rst', 'markdown')
except (ImportError, OSError):
# Ignore this - release.sh checks for making releases
pass
if __name__ == '__main__':
setup(
version=version_data['__version__'],
name='pyinfra',
description='Deploy stuff by diff-ing the state you want against the remote server.',
long_description=long_description,
author='Nick / Fizzadar',
author_email='pointlessrambler@gmail.com',
license='MIT',
url='http://github.com/Fizzadar/pyinfra',
packages=find_packages(),
scripts=(
'bin/pyinfra',
),
install_requires=INSTALL_REQUIRES,
extras_require={
'dev': DEV_REQUIRES,
'test': TEST_REQUIRES,
},
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: System :: Systems Administration',
),
)
|