-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (32 loc) · 1.21 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
d = {}
exec(open("multimodalfitting/version.py").read(), None, d)
version = d['version']
long_description = open("README.md").read()
def open_requirements(fname):
with open(fname, mode='r') as f:
requires = f.read().split('\n')
requires = [e for e in requires if len(e) > 0 and not e.startswith('#')]
return requires
install_requires = open_requirements('requirements.txt')
entry_points = None
setup(
name="multimodalfitting",
version=version,
author="Alessio Buccino, Tanguy Damart, Darshan Mandge",
author_email="alessiop.buccino@gmail.com",
description="Python package for constructing biophysical neuronal models with patch-clamp and MEA data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/alejoe91/multimodalfitting",
install_requires=install_requires,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
packages=find_packages(),
entry_points=entry_points,
include_package_data=True,
)