-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
32 lines (28 loc) · 1.05 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
import sys
from setuptools import setup, find_packages
if 'java' not in sys.platform.lower():
raise Exception('This package can only be installed on Jython.')
long_description = open('README.rst').read()
version = open('RELEASE').read()
setup(
name='jython-swingutils',
version=version,
description="Makes using Java's Swing UI toolkit easy on Jython",
long_description=long_description,
author='Alex Gronholm',
author_email='[email protected]',
url='http://pypi.python.org/jython-swingutils/',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: Jython',
'Topic :: Software Development :: User Interfaces'
],
install_requires=['futures >= 2.2.0'],
keywords='jython swing',
license='MIT',
packages=find_packages(exclude=['test'])
)