-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
71 lines (68 loc) · 2.19 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from pathlib import Path
from setuptools import setup
here = Path(__file__).parent
# Get the long description from the README file
with (here / "README.md").open(encoding="utf-8") as f:
long_description = f.read()
setup(
name="pythonanywhere",
version="0.15.5",
description="PythonAnywhere helper tools for users",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pythonanywhere/helper_scripts/",
author="PythonAnywhere LLP",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
],
keywords="pythonanywhere api cloud web hosting",
packages=[
"cli",
"pythonanywhere",
],
install_requires=[
"docopt",
"packaging",
"python-dateutil",
"pythonanywhere_core==0.2.4",
"requests",
"schema",
"snakesay",
"tabulate",
"typer",
],
extras_require={},
python_requires=">=3.8",
package_data={},
data_files=[],
entry_points={
"console_scripts": [
"pa=cli.pa:app",
]
},
scripts=[
"scripts/pa_autoconfigure_django.py",
"scripts/pa_create_scheduled_task.py",
"scripts/pa_create_webapp_with_virtualenv.py",
"scripts/pa_delete_scheduled_task.py",
"scripts/pa_delete_webapp_logs.py",
"scripts/pa_get_scheduled_task_specs.py",
"scripts/pa_get_scheduled_tasks_list.py",
"scripts/pa_install_webapp_letsencrypt_ssl.py",
"scripts/pa_install_webapp_ssl.py",
"scripts/pa_reload_webapp.py",
"scripts/pa_start_django_webapp_with_virtualenv.py",
"scripts/pa_update_scheduled_task.py",
],
)