-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
51 lines (47 loc) · 1.42 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
# -*- coding: utf-8 -
#
# This file is part of speedydeploy released under the MIT license.
# See the NOTICE for more information.
import os
from setuptools import setup, find_packages
import sys
from speedydeploy import get_version
setup(
name='speedydeploy',
version=get_version(),
description='Speed deploy',
long_description=file(
os.path.join(
os.path.dirname(__file__),
'README.md'
)
).read(),
author='Victor Safronovich',
author_email='[email protected]',
license='MIT',
url='http://github.com/suvit/speedydeploy',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=False,
packages=find_packages(exclude=['docs', 'examples', 'tests']),
install_requires=file(
os.path.join(
os.path.dirname(__file__),
'speedydeploy',
'requirements.txt'
)
).read(),
include_package_data=True,
)