forked from nonomal/PagerMaid-Modify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.11 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
""" Packaging of PagerMaid. """
from setuptools import setup, find_packages
import datetime
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fp:
install_requires = fp.read()
formatted_today = datetime.date.today().strftime('%y%m%d')
setup(
name="pagermaid_modify",
version=formatted_today[0:2] + "." + formatted_today[2:4] + "." + formatted_today[4:6] + ".post1",
author="xtaodada",
author_email="[email protected]",
description="A telegram utility daemon and plugin framework.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/xtaodada/PagerMaid-Modify",
packages=find_packages(),
entry_points={
'console_scripts': [
'pagermaid=pagermaid:__main__'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Unix"
],
python_requires=">=3.6",
install_requires=install_requires,
include_package_data=True
)