-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·45 lines (40 loc) · 1.51 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
#!/usr/bin/env python
import os.path
from setuptools import setup, find_packages
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')
install_reqs, dep_links = fetch_requirements(REQUIREMENTS_FILE)
apply_vagrant_workaround()
setup(
name='circleci-helpers',
version='0.1.1',
description='Provides useful helpers for Circle CI',
author='Denis Baryshev',
author_email='[email protected]',
install_requires=install_reqs,
dependency_links=dep_links,
packages=find_packages(exclude=['setuptools', 'tests']),
include_package_data=True,
license="MIT",
url='https://github.com/dennybaa/circleci-helpers',
entry_points={
'console_scripts': [
'circle-matrix = circleci_helpers.matrix.main:main'
]
},
classifiers=[
'Development Status :: 5 - Stable',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)