-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·38 lines (34 loc) · 1.31 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
#!/usr/bin/env python
# setuptools doesn't support type hints for now:
# https://github.com/pypa/setuptools/issues/2345
# so we ignoring mypy checks on this package
from setuptools import find_packages, setup # type: ignore
with open("README.md") as f:
long_description = f.read()
setup(
name="fqn-decorators",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="Easily create multi-purpose decorators that have access to the FQN of the original function.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Mattias Sluis",
author_email="mattias.sluis@kpn.com",
url="https://github.com/kpn-digital/py-fqn-decorators",
packages=find_packages(exclude=["tests*"]),
tests_require=["tox"],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
],
)