-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
44 lines (38 loc) · 1.35 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
41
42
43
44
#!/usr/bin/env python
from setuptools import setup
VERSION = "1.0.4"
with open('README.rst') as f:
LONG_DESCR = f.read()
data_files = []
setup(
name='belfrywidgets',
version=VERSION,
description='A collection of useful tkinter widgets.',
long_description=LONG_DESCR,
author='Revar Desmera',
author_email='revarbat@gmail.com',
url='https://github.com/revarbat/belfrywidgets',
download_url='https://github.com/revarbat/belfrywidgets/archive/master.zip',
packages=['belfrywidgets'],
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: MacOS X',
'Environment :: MacOS X :: Aqua',
'Environment :: MacOS X :: Carbon',
'Environment :: MacOS X :: Cocoa',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Widget Sets',
],
keywords='tkinter widgets',
install_requires=['setuptools'],
data_files=data_files,
)