forked from xrg/SpiffGtkWidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 1.21 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
from setuptools import setup, find_packages
from os.path import dirname, join
srcdir = join(dirname(__file__), 'src')
setup(name = 'SpiffGtkWidgets',
version = '0.2.0',
description = 'A collection of useful Gtk widgets',
long_description = \
"""
Spiff Gtk Widgets provides a collection of Gtk widgets:
- An annotated text view
- A calendar similar to Google's online calendar
""",
author = 'Samuel Abels',
author_email = '[email protected]',
license = 'AGPLv3',
package_dir = {'': srcdir},
packages = [p for p in find_packages(srcdir)],
install_requires = [],
keywords = 'spiff gtk widgets textview annotations calendar',
url = 'https://github.com/knipknap/SpiffGtkWidgets/',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
])