-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (53 loc) · 1.84 KB
/
setup.py
File metadata and controls
59 lines (53 loc) · 1.84 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''LFPykit setuptools file
'''
import os
import setuptools
d = {}
exec(open(os.path.join('lfpykit', 'version.py')).read(), None, d)
version = d['version']
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='LFPykit',
version=version,
author='LFPy-team',
author_email='lfpy@users.noreply.github.com',
description='Electrostatic models for multicompartment neuron models',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/LFPy/LFPykit',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Utilities',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Development Status :: 4 - Beta',
],
python_requires='>=3.7',
install_requires=[
'numpy>=1.15.2',
'scipy',
'meautility'],
package_data={'lfpykit': [os.path.join('tests', '*.npz'),
os.path.join('tests', '*.py')]},
include_package_data=True,
extras_require={'tests': ['pytest', 'sympy'],
'docs': ['sphinx', 'numpydoc', 'sphinx_rtd_theme',
'recommonmark'],
},
dependency_links=[],
provides=['lfpykit'],
zip_safe=False
)