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