-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (45 loc) · 1.57 KB
/
setup.py
File metadata and controls
52 lines (45 loc) · 1.57 KB
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
39
40
41
42
43
44
45
46
47
48
49
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup (
name = "pypepa",
version = "0.4.13",
description = "pypepa is a PEPA library and a toolset for PEPA.",
long_description = open("README.rst").read(),
author = "Dariusz Dwornikowski",
author_email = "dariusz.dwornikowski@cs.put.poznan.pl",
url = "https://github.com/tdi/pyPEPA",
packages = ["pypepa",
"pypepa.cli",
"pypepa.parsing",
"pypepa.derivation",
"pypepa.experiments",
"pypepa.solvers",
],
package_data={'': ['LICENCE.txt']},
requires = [
'numpy (>=1.6.7)',
'scipy (>=0.10)',
'pyparsing (>=2.0.0)',
'matplotlib (>=1.2.0)',
],
install_requires = ['numpy>=1.6.7', 'scipy>=0.11', 'pyparsing>=2.0.0',
'matplotlib>=1.2.1'],
license = "Apache Common 2.0",
zip_safe = False,
entry_points = {
'console_scripts': ['pypepa=pypepa.cli.cli:main',]
},
classifiers = [
'Environment :: Console',
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3.3',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Science/Research',
'Operating System :: POSIX',
],
)