This repository was archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.19 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.19 KB
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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except:
from distutils.core import setup
setup(
name="sprinter",
version="1.4.2",
description="a utility library to help environment bootstrapping scripts",
long_description=open("README.rst").read(),
author="Yusuke Tsutsumi",
author_email="yusuke@yusuketsutsumi.com",
url="http://toumorokoshi.github.io/sprinter",
packages=find_packages(),
install_requires=[
"clint>=0.3.3",
"docopt>=0.6.1",
"pip==9.0.1",
"requests>=2.3.0",
"six>=1.4.1",
"virtualenv>=15.1.0,<16",
],
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.7",
"Programming Language :: Python :: 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",
)