-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (51 loc) · 1019 Bytes
/
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
import pathlib
from setuptools import setup
from phoenix import VERSION
print(f"Packaging Phoenix version {VERSION}...")
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="phoenix-ws",
version=VERSION,
description="An alternative web server and package manager",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Froggo8311/Phoenix",
author="Froggo",
# author_email="",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3"
],
packages=[
"phoenix",
"ppm"
],
include_package_data=True,
install_requires=[
"flask",
"waitress"
],
entry_points={
"console_scripts": [
"phoenix=phoenix.__init__:main"
]
},
license_files = ("LICENSE.md",),
keywords=[
"Phoenix",
"PPM",
"NoJS",
"NoPM",
"Website",
"Web",
"Webserver",
"Server",
"Package Manager",
"HTML",
"CSS",
"JavaScript",
"JS",
"Fast"
]
)