-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (36 loc) · 1.29 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
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
__version__ = "0.5.1"
__desc__ = """Yet Another Config Tool"""
with open(path.join(here, 'requirements.txt')) as r:
__requires__ = [x.strip() for x in r.readlines() if not x.startswith('--')]
with open(path.join(here, 'readme.rst')) as f:
__longdesc__ = f.read()
setup(
name="yact",
author="Jesse Roberts",
author_email="[email protected]",
version=__version__,
url="https://github.com/jesseops/yact",
install_requires=__requires__,
extras_require={'test': ['nosetests']},
packages=['yact'],
description=__desc__,
long_description=__longdesc__,
license='MIT',
keywords='yaml yact settings config parser configuration',
classifiers=[
'Natural Language :: English',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'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',
'Programming Language :: Python :: 3.6',
]
)