-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·38 lines (36 loc) · 1.13 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
from setuptools import setup, find_packages
meta = {}
exec(open('./snakerunner/version.py').read(), meta)
meta['long_description'] = open('./README.md').read()
setup(
name='snakerunner',
version=meta['__version__'],
author="Bastian Venthur",
author_email="[email protected]",
description="GUI Viewer for Python profiling runs",
long_description=meta['long_description'],
keywords='profile,gui,wxPython,squaremap',
url="https://github.com/venthur/snakerunner",
packages=find_packages(exclude=['tests', "venv"]),
install_requires=[
'wxpython',
],
license="BSD",
zip_safe=False,
entry_points={
'gui_scripts': ['runsnake=snakerunner.snakerunner:main',
'snakerunner=snakerunner.snakerunner:main'],
},
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
],
include_package_data=True,
package_data={
'runsnakerun': [
'resources/*.png',
],
},
)