-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (38 loc) · 1.33 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
"""Setup file for handling packaging and distribution."""
from setuptools import setup
__version__ = "1.0.7"
setup(
name="recursive_decorator",
version=__version__,
long_description=open("README.rst").read(),
description="Decorator to apply given decorator recursively on functions",
license="MIT",
author="yakobu",
author_email="[email protected]",
url="https://github.com/ronen-y/recursive_decorator",
keywords="decorator recursive recursive_decorator recursive-decorator",
install_requires=["codetransformer", "cached-property"],
packages=["recursive_decorator"],
extras_require={
'dev': [
'mock',
'flake8',
'pytest',
'pytest-cov',
],
},
package_data={'': ['*.xls', '*.xsd', '*.json',
'*.css', '*.xml', '*.rst']},
classifiers=[
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: POSIX',
'Topic :: Software Development :: Pre-processors',
],
zip_safe=False
)