-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 916 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='pyslip',
version='3.0.2',
description='A slipmap widget for wxPython',
long_description=readme(),
url='http://github.com/rzzzwilson/pySlip',
author='Ross Wilson',
author_email='[email protected]',
license='MIT',
packages=['pyslip'],
install_requires=['python', 'wxpython'],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2 :: Only'],
keywords='python wxpython slipmap map',
download_url='https://github.com/rzzzwilson/pySlip/releases/tag/3.0.2',
include_package_data=True,
zip_safe=False)