-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (33 loc) · 1.19 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
from typing import Final
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
GITHUB_URL: Final = "https://github.com/alryaz/pik-intercom-python"
setuptools.setup(
name="pik_intercom",
author="Alexander Ryazanov",
author_email="[email protected]",
description="Pik Intercom API for Python",
keywords="pypi, package, pik, intercom",
long_description=long_description,
long_description_content_type="text/markdown",
url=GITHUB_URL,
project_urls={
"Documentation": GITHUB_URL,
"Bug Reports": GITHUB_URL + "/issues",
"Source Code": GITHUB_URL,
},
packages=setuptools.find_packages(exclude=["docs", "tests*"]),
classifiers=[
# see https://pypi.org/classifiers/
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)