forked from toumorokoshi/sprinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.28 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
#!/usr/bin/env python
try:
from setuptools import setup
except:
from distutils.core import setup
setup(name='sprinter',
version='1.1.4',
description='a utility library to help environment bootstrapping scripts',
long_description=open('README.rst').read(),
author='Yusuke Tsutsumi',
author_email='[email protected]',
url='http://toumorokoshi.github.io/sprinter',
packages=['sprinter', 'sprinter.formula'],
install_requires=[
'requests>=1.2.3',
'pip>=1.3.1',
'docopt>=0.6.1',
'six>=1.4.1'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Topic :: System :: Software Distribution',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3'
],
entry_points={
'console_scripts': [
'sprinter = sprinter.install:main'
]
},
tests_require=['mock>=1.0.1', 'nose>=1.3.0', 'httpretty==0.6.5'],
test_suite='nose.collector'
)