-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (50 loc) · 1.39 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
from setuptools import (
setup,
find_packages,
)
setup(
name='plix',
url='http://plix.readthedocs.org/en/latest/index.html',
author='Julien Kauffmann',
author_email='[email protected]',
maintainer='Julien Kauffmann',
maintainer_email='[email protected]',
license='MIT',
version=open('VERSION').read().strip(),
description=(
"A tool to create build matrices and run them in parallel."
),
long_description="""\
A command-line tool to create build matrices and run them, possibly in
parallel, on different platforms.
""",
packages=find_packages(exclude=[
'tests',
]),
install_requires=[
'chromalog',
'pyyaml',
'Jinja2',
'six',
'voluptuous',
'pyzmq',
],
test_suite='tests',
entry_points={
'console_scripts': [
'plix = plix.main:main',
],
},
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Development Status :: 2 - Pre-Alpha',
],
)