forked from pybee/tkreadonly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 989 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
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
from setuptools import setup
try:
readme = open('README.rst')
long_description = str(readme.read())
finally:
readme.close()
setup(
name='tkreadonly',
version='0.6.0',
description='A set of Tkinter widgets to display readonly text and code.',
long_description=long_description,
author='Russell Keith-Magee',
author_email='[email protected]',
url='http://github.org/pybee/tkreadonly',
py_modules=[
'tkreadonly',
],
install_requires=[
'Pygments>=1.5'
],
scripts=[],
license='New BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Utilities',
],
test_suite='tests'
)