-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (41 loc) · 1.46 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open('README.rst') as readme:
long_description = readme.read()
with open('requirements.txt') as requirements:
lines = requirements.readlines()
libraries = [lib for lib in lines if not lib.startswith('-')]
dependency_links = [link.split()[1] for link in lines if
link.startswith('-f')]
exec(open('pydiploy/version.py').read())
setup(
name='pydiploy',
version=__version__,
author='di-dip-unistra',
author_email='[email protected]',
maintainer='di-dip-unistra',
maintainer_email='[email protected]',
url='https://github.com/unistra/pydiploy',
license='PSF',
description='A tool to deploy applications, and automate processing with fabric',
long_description=long_description,
packages=find_packages(),
include_package_data=True,
download_url='http://pypi.python.org/pypi/pydiploy',
install_requires=libraries,
dependency_links=dependency_links,
keywords=['deploy', 'fabric', 'automation'],
entry_points={
'console_scripts': [
'pydiploy_sublime_snippet = pydiploy.scripts:sublime_text_snippet',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7'
]
)