-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
38 lines (37 loc) · 1.17 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
from setuptools import setup
setup(
name="aslo4",
version="0.3.0",
packages=[
"aslo4",
"aslo4.lib",
"aslo4.lib.progressbar",
"aslo4.bundle",
"aslo4.platform",
"aslo4.rdf",
],
url="https://github.com/sugarlabs/aslo-v4",
download_url="https://pypi.python.org/pypi/aslo4",
license="AGPLv3+",
author="srevinsaju",
package_data={"aslo4": ["data/flatpak.json", "assets/activity-helloworld.svg"]},
author_email="[email protected]",
description="A python package to build sugar app store",
include_package_data=True,
install_requires=["python_utils", "jinja2", "colorama"],
entry_points={
"console_scripts": [
"aslo4-gen = aslo4.__main__:main",
"aslo4 = aslo4.__main__:main",
]
}, # noqa: E501
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
],
)