-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (43 loc) · 1.66 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""A setuptools based setup module for trace-simexp
"""
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
exec(open('trace_simexp/_version.py').read())
setup(
name="trace-simexp",
# Versions comply with semantic versioning, see
# http://semver.org/
version=__version__,
description="Script utility to assist simulation experiment with TRACE",
long_description=long_description,
# The project's main homepage
url="https://bitbucket.org/lrs-uq/trace-simexp",
# Author details
author="Damar Wicaksono",
author_email="[email protected]",
license="MIT",
# Classifiers
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developer",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5"
],
# Manually entered package name
packages=["trace_simexp"],
# Provide the following executable scripts
entry_points={
"console_scripts": [
"trace_simexp=trace_simexp.cmdln_interface:main",
"trace_simexp_prepro=trace_simexp.cmdln_interface:cli_prepro",
"trace_simexp_execute=trace_simexp.cmdln_interface:cli_execute",
"trace_simexp_postpro=trace_simexp.cmdln_interface:cli_postpro",
"trace_simexp_reset=trace_simexp.cmdln_interface:cli_reset"
]
},
zip_safe=False, install_requires=['numpy', 'scipy']
)