forked from ExpTechTW/CDPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (47 loc) · 1.65 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import os
from setuptools import find_packages, setup
from cdps.constants import core_constant
NAME = core_constant.PACKAGE_NAME
VERSION = core_constant.VERSION
DESCRIPTION = 'Composite Disaster Prevention Server'
AUTHOR = 'ExpTechTW'
REQUIRES_PYTHON = '>=3.8'
CLASSIFIERS = [
# https://pypi.org/classifiers/
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
ENTRY_POINTS = {
'console_scripts': [
'{} = {}.entrypoint:entrypoint'.format(core_constant.CLI_COMMAND, core_constant.PACKAGE_NAME)
]
}
print('ENTRY_POINTS = {}'.format(ENTRY_POINTS))
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt')) as f:
REQUIRED = list(filter(None, map(str.strip, f)))
print('REQUIRED = {}'.format(REQUIRED))
with open(os.path.join(here, 'README.md'), encoding='utf8') as f:
LONG_DESCRIPTION = f.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author=AUTHOR,
author_email='[email protected]',
packages=find_packages(exclude=['tests', '*.tests', '*.tests.*', 'tests.*']),
include_package_data=True,
python_requires=REQUIRES_PYTHON,
install_requires=REQUIRED,
classifiers=CLASSIFIERS,
entry_points=ENTRY_POINTS,
)