-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
executable file
·68 lines (62 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
import imp
import io
import os
try:
from setuptools import find_packages, setup
except ImportError:
raise ImportError(
"'setuptools' is required but not installed. To install it, "
"follow the instructions at "
"https://pip.pypa.io/en/stable/installing/#installing-with-get-pip-py"
)
def read(*filenames, **kwargs):
encoding = kwargs.get("encoding", "utf-8")
sep = kwargs.get("sep", "\n")
buf = []
for filename in filenames:
with io.open(filename, encoding=encoding) as f:
buf.append(f.read())
return sep.join(buf)
root = os.path.dirname(os.path.realpath(__file__))
version_module = imp.load_source(
"version", os.path.join(root, "nengo_gui", "version.py")
)
setup(
name="nengo-gui",
version=version_module.version,
author="Applied Brain Research",
author_email="info@appliedbrainresearch.com",
packages=find_packages(),
scripts=[],
include_package_data=True,
url="https://github.com/nengo/nengo-gui",
license="GNU General Public License, version 2",
description="Web-based GUI for building and visualizing Nengo models.",
long_description=read("README.rst", "CHANGES.rst"),
zip_safe=False,
entry_points={
"console_scripts": [
"nengo_gui = nengo_gui:old_main",
"nengo = nengo_gui:main",
]
},
install_requires=[
"nengo>=2.6.0",
],
tests_require=[
"pytest",
"selenium",
],
classifiers=[ # https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)