-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.14 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
'''
Created on Mar 31, 2016
@author: christoph
'''
from setuptools import find_packages, setup
setup(
name="pyPetriNets",
version="0.0.1",
description = "PetriNet Simulator Gui",
author='Christoph Kuhr',
author_email='[email protected]',
url='http://www.christophkuhr.de',
classifiers = [
"Programming Language :: Python :: 3.4",
"Development Status :: 2 - Pre-Alpha",
"Environment :: X11 Applications :: Qt",
"Framework :: Setuptools Plugin",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Visualization"
],
install_requires=[
"SNAKES >= 0.9.17",
"lxml >= 3.3.3",
"PyQt4 >= 4.10.4"
]
)