-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.02 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
"""Setup script for PEP249."""
import setuptools
from upsolver import __version__
with open("README.md", "r") as readme_file:
long_description = readme_file.read()
setuptools.setup(
name="upsolver-py",
version=__version__,
author="Tetiana Shemet",
author_email="[email protected]",
url="https://github.com/tanyshak/pep-249-upsolver-slim",
description="Slim implementation of the DB 2.0 API outlined in PEP-249. for upsolver",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
],
python_requires=">=3.7",
)