-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 954 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
from setuptools import setup, find_packages
setup(
name="Chubasquero",
version="1.0.0",
packages=find_packages(),
install_requires=["pelican>=3.7.1"],
entry_points = {
"console_scripts": ["chubasquero = chubasquero.core:main"],
},
package_data = {
"chubasquero": ["static/*", "templates/*"]
},
author="Oscar (dotoscat) Triano",
description="A CMS built on top of Pelican",
url="https://github.com/dotoscat/chubasquero",
license="AGPL-3.0",
selectors=[
"Development Status :: 5 - Production/Stable",
"Framework :: Flask",
"Framework :: Pelican",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Desktop Environment",
"Topic :: Utilities"
],
)