-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
37 lines (36 loc) · 1.15 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
from setuptools import setup, find_packages
setup(
name = "homepagebuilder",
version = "0.14.2",
author = "Nattiden",
author_email = "lightbeacon@bugjump.net",
url = "https://github.com/Light-Beacon/HomepageBuilder",
description = "A tool to generate homepage code for PCL2",
keywords = ['PCL'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
'beautifulsoup4>=4.12.3',
'Markdown>=3.5.2',
'PyYAML>=6.0.1',
'flask>=3.0.3',
],
packages = find_packages(where="src"),
package_dir = {"":"src"},
include_package_data=True,
license='AGPL-3.0',
entry_points = {
'console_scripts': [
'builder = homepagebuilder.main:main'
]
}
)