-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (42 loc) · 1.36 KB
/
setup.py
File metadata and controls
49 lines (42 loc) · 1.36 KB
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import versioneer
with open('README.md', encoding="utf8") as f:
readme = f.read()
with open('HISTORY.md', encoding="utf8") as f:
history = f.read()
requirements = [
# to specify what a project minimally needs to run correctly
]
setup(
name="diaboli-mundi-back",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Project Short Description",
long_description=readme + '\n\n' + history,
author="Ginta",
author_email="775650117@qq.com",
keywords="diaboli_mundi_back",
# TODO myblog url
# url="https://ginta.top",
include_package_data=True,
packages=find_packages(include=["diaboli_mundi_back", "diaboli_mundi_back.*"]),
install_requires=requirements,
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Environment :: Console",
],
zip_safe=False,
entry_points={
"console_scripts": [
"diaboli_mundi_back = diaboli_mundi_back.main:app"
]
},
)