-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (40 loc) · 1.14 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
# -*- coding: utf-8 -*-
from setuptools import setup
long_description = None
INSTALL_REQUIRES = [
'django',
'psutil',
'docker',
'gunicorn',
'gevent',
'setuptools<=57.4',
]
setup_kwargs = {
'name': 'easy-climb-wall',
'version': '0.1.0',
'description': '',
'long_description': long_description,
'license': 'MIT',
'author': '',
'author_email': 'xingci.xu <[email protected]>',
'maintainer': None,
'maintainer_email': None,
'url': '',
'packages': [
'x007007007.easyclimbwall',
'x007007007.common',
'x007007007.easyclimbwall.apps',
'x007007007.easyclimbwall.apps.config',
'x007007007.easyclimbwall.apps.config.migrations',
'x007007007.easyclimbwall.apps.config.management',
'x007007007.easyclimbwall.apps.config.management.commands',
'x007007007.common.djapp',
'x007007007.common.djapp.pipeline',
'x007007007.common.djapp.pipeline.models',
],
'package_dir': {'': 'src'},
'package_data': {'': ['*']},
'install_requires': INSTALL_REQUIRES,
'python_requires': '>=3.10',
}
setup(**setup_kwargs)