-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (30 loc) · 1.05 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
from setuptools import setup, find_packages
from codecs import open
from os import path
from os import environ
here = path.abspath(path.dirname(__file__))
setup(
name='consul_ha',
version='0.1.%s' % environ.get("CIRCLE_BUILD_NUM"),
url='https://github.com/mongohq/consul_ha',
author='Chris Winslett',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
keywords='consul high availablity',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=[],
# List additional groups of dependencies here (e.g. development dependencies).
# You can install these using the following syntax, for example:
# $ pip install -e .[dev,test]
extras_require = {
'dev': ['check-manifest'],
'test': [],
},
)