Skip to content

Commit 18091a7

Browse files
author
jgbeninger
committed
corrected setup.py location
1 parent 918583d commit 18091a7

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

setup.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
from setuptools import setup
2+
3+
def readme():
4+
with open('README.md') as f:
5+
return f.read()
6+
7+
setup(name='srplasticity',
8+
version='0.1',
9+
description='Functions for linear-nonlinear synaptic convolution model',
10+
classifiers=[
11+
'Development Status :: 2 - Pre-Alpha',
12+
'Programming Language :: Python :: 3.8',
13+
],
14+
url='https://github.com/nauralcodinglab/srplasticity.git',
15+
author='Julian Rossbroich, Daniel Trotter, John Beninger, Richard Naud',
16+
author_email='jbeni014@uottawa.ca',
17+
license='GPLv3',
18+
packages=['srplasticity'],
19+
install_requires=[
20+
'numpy',
21+
'scipy',
22+
],
23+
zip_safe=False)

0 commit comments

Comments
 (0)