forked from teepark/reconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (24 loc) · 780 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·28 lines (24 loc) · 780 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
#!/usr/bin/env python
# vim: fileencoding=utf8:et:sw=4:ts=8:sts=4
import os
from setuptools import setup
VERSION = (0, 0, 1, "")
setup(
name="reconfig",
description="YAML config file manager with signal-triggered reloading " +
"and watchable key/value changes",
py_modules=["reconfig"],
version=".".join(filter(None, map(str, VERSION))),
author="Travis Parker",
author_email="travis.parker@gmail.com",
url="http://github.com/teepark/reconfig",
license="BSD",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python",
],
install_requires=['PyYaml'],
)