forked from zeekay/decorum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (55 loc) · 1.59 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Python packaging."""
import os
import sys
from setuptools import setup
#: Absolute path to directory containing setup.py file.
here = os.path.abspath(os.path.dirname(__file__))
#: Boolean, ``True`` if environment is running Python version 2.
IS_PYTHON2 = sys.version_info[0] == 2
# Data for use in setup.
NAME = 'Decorum'
DESCRIPTION = 'Tool for writing simple decorators.'
README = open(os.path.join(here, 'README.rst')).read()
AUTHOR = u'Zach Kelling'
EMAIL = '[email protected]'
LICENSE = 'MIT'
URL = 'https://pypi.python.org/pypi/{name}'.format(name=NAME)
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
]
KEYWORDS = [
'decorator',
'decorators',
]
PACKAGES = ['decorum']
REQUIREMENTS = []
SETUP_REQUIREMENTS = [
'setuptools',
]
ENTRY_POINTS = {}
if __name__ == '__main__': # Don't run setup() when we import this module.
setup(
author=AUTHOR,
author_email=EMAIL,
classifiers=CLASSIFIERS,
description=DESCRIPTION,
entry_points=ENTRY_POINTS,
include_package_data=True,
install_requires=REQUIREMENTS,
keywords=' '.join(KEYWORDS),
license=LICENSE,
long_description=README,
name=NAME,
packages=PACKAGES,
setup_requires=SETUP_REQUIREMENTS,
url=URL,
version='1.0.3.dev0',
zip_safe=False,
)