-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (52 loc) · 1.93 KB
/
setup.py
File metadata and controls
57 lines (52 loc) · 1.93 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# /setup.py
#
# Installation and setup script for psqtraviscontainer
#
# See /LICENCE.md for Copyright information
"""Installation and setup script for psqtraviscontainer."""
import platform
from setuptools import find_packages, setup
INSTALL_EXTRAS = []
if platform.system() != "Windows":
INSTALL_EXTRAS.extend([
"python-debian"
])
setup(name="polysquare-travis-container",
version="0.0.47",
description="""Polysquare Travis-CI Container Root""",
long_description_markdown_filename="README.md",
long_description_content_type="text/markdown",
author="Sam Spilsbury",
author_email="smspillaz@gmail.com",
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4"],
url="http://github.com/polysquare/polysquare-travis-container",
license="MIT",
keywords="development travis",
packages=find_packages(exclude=["test"]),
install_requires=["clint",
"parse-shebang>=0.0.3",
"requests",
"six",
"shutilwhich",
"tempdir"] + INSTALL_EXTRAS,
extras_require={
"upload": [
"setuptools-markdown"
]
},
entry_points={
"console_scripts": [
"psq-travis-container-create=psqtraviscontainer.create:main",
"psq-travis-container-exec=psqtraviscontainer.use:main",
"psq-travis-container-get-root=psqtraviscontainer.rootdir:main"
]
},
test_suite="nose.collector",
zip_safe=True,
include_package_data=True)