-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 786 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 786 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
try:
long_description = open("README.md").read()
except IOError:
long_description = """
"""
setup(
name="configus",
version="0.1.4",
description="Configus - a declarative spec for configuration",
license="MIT",
author="Alex Myasoedov",
author_email="msoedov@gmail.com",
packages=['configus'],
install_requires=['trafaret'],
long_description=long_description,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
]
)