-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (32 loc) · 998 Bytes
/
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
#! /usr/bin/env python
import os
from distutils.core import setup
from setuptools.command.test import test as TestCommand
NAME = 'simcalc'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
install_requires = read('requirements.txt')
extras_require = {}
# Notebook dependencies for plotting
extras_require['plotting'] = read('requirements_plotting.txt')
setup(
name=NAME,
install_requires = install_requires,
extras_require = extras_require,
version="1.0",
author="Sander Keemink",
author_email="[email protected]",
description="Simulate calcium data",
url="https://github.com/rochefort-lab/SimCalc",
download_url="NA",
package_dir={NAME: "./simcalc"},
packages=[NAME],
license="GNU",
long_description=read('README.rst'),
classifiers=[
"License :: GNU",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
],
)