-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (30 loc) · 912 Bytes
/
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
from setuptools import setup
version = '0.1.0dev5'
with open('README.md', 'r') as f:
long_description = f.read()
DEPENDENCIES = [
'pyyaml',
'python-consul'
]
setup(
name='py-viper',
version=version,
description='Python viper',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['viper'],
author='shaneing',
author_email='[email protected]',
url='https://github.com/shaneing/python-viper',
install_requires=[DEPENDENCIES],
classifiers=[
'Programming Language :: Python',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)