-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (28 loc) · 880 Bytes
/
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
from __future__ import annotations
from setuptools import find_packages
from setuptools import setup
import cptt
with open("README.md", encoding="utf8") as f:
README = f.read()
with open("CHANGELOG.md", encoding="utf8") as f:
CHANGELOG = f.read()
with open("requirements.txt", encoding="utf8") as f:
DEPENDENCIES = f.read().splitlines()
setup(
name="cptt",
version=cptt.__version__,
description=cptt.__description__,
url='https://github.com/RealA10N/cptt',
python_requires=">=3.7,<4",
install_requires=DEPENDENCIES,
long_description=README + '\n\n' + CHANGELOG,
long_description_content_type="text/markdown",
author=cptt.__author__,
author_email=cptt.__author_email__,
packages=find_packages(include=['cptt*']),
entry_points={
'console_scripts': [
'cptt=cptt:run_main',
],
},
)