-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 726 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 726 Bytes
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
try:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
except Exception, e:
print "Forget setuptools, trying distutils..."
from distutils.core import setup
description = ("Makes the functions developed in my NEF notebooks importable")
setup(
name="nef_notebooks",
version="1.0.0",
author="Sam Fok",
author_email="sam.b.fok@gmail.com",
packages=['neuron',],
scripts=[],
url="https://github.com/fragapanagos/notebooks",
description=description,
long_description=open('README.md').read(),
requires=[
"nengo",
],
)