-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.12 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/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='counsel',
version='0.1.2',
description='CLI utility for Consul',
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/stackfeed/counsel',
entry_points={
'console_scripts': [
'counsel = counsel.cli.main:main'
]
},
classifiers=[
'Development Status :: 5 - Stable',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
]
)