forked from kpn/py-pkgsettings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.57 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
#!/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
with open("README.md") as f:
long_description = f.read()
setup(
name="pkgsettings",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="Python package to ease the configuration of packages",
long_description=long_description,
long_description_content_type="text/markdown",
author="KPN DE Platform",
author_email="de-platform@kpn.com",
url="https://github.com/kpn/py-pkgsettings",
install_requires=[],
extras_require={
"all": ["elasticsearch>=5.0.0,<7.0.0"],
"elasticsearch": ["elasticsearch>=5.0.0,<7.0.0"],
},
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",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)