-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (35 loc) · 1.29 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
# This file is part of GPropertyGrid project.
# The COPYRIGHT file at the top level of this repository
# contains the full copyright notices and license terms.
"""GPropertyGrid setup script"""
from distutils.core import setup
from gpropertygrid import VERSION, AUTHOR
def run():
setup(
name="GPropertyGrid",
version=VERSION,
url="http://www.formateli.com/software/gpropertygrid/",
download_url="", # TODO
description="Python Gtk 3 property grid widget.",
author=AUTHOR,
author_email="", # TODO
maintainer_email="", # TODO
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: " \
"GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
license="GNU General Public License v3",
platforms=["OS Independent"],
packages=["gpropertygrid", ],
package_data={},
scripts=[],
data_files=[("docs", ["README.rst", "LICENSE", "COPYRIGHT"])],
)
if __name__ == "__main__":
run()