-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (52 loc) · 1.73 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
import os
from setuptools import find_packages, setup
def _read(f):
with open(os.path.join(os.path.dirname(__file__), f)) as f_:
return f_.read().strip()
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
keywords = ["uddsketch", "ddsketch"]
project_urls = {
"Website": "https://github.com/jettify/uddsketch",
"Documentation": "https://uddsketch.readthedocs.io",
"Issues": "https://github.com/jettify/uddsketch/issues",
}
setup(
name="uddsketch",
description=("uddsketch"),
long_description="\n\n".join((_read("README.rst"), _read("CHANGES.rst"))),
long_description_content_type="text/x-rst",
classifiers=classifiers,
platforms=["POSIX"],
author="Nikolay Novik",
author_email="nickolainovik@gmail.com",
url="https://github.com/jettify/uddsketch-py",
download_url="https://pypi.org/project/uddsketch/",
license="Apache 2",
packages=find_packages(exclude=("tests",)),
install_requires=[],
setup_requires=[
"setuptools>=45",
"setuptools_scm",
"setuptools_scm_git_archive",
"wheel",
],
keywords=keywords,
zip_safe=True,
include_package_data=True,
project_urls=project_urls,
python_requires=">=3.7.0",
use_scm_version=True,
)