-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 864 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
# from setuptools import find_packages, setup
# setup(
# name='anisonet',
# packages=find_packages(),
# )
from setuptools import setup
setup(
name='anisonet',
version='0.1',
description='A example Python package',
url='https://github.com/shuds13/pyexample',
author='Arash Golmohammadi',
author_email='[email protected]',
license='MIT',
packages=['anisonet'],
install_requires=[
'numpy',
'matplotlib',
'brian2==2.6',
'scipy',
'pandas',
'scikit-learn',
'noise',
],
# classifiers=[
# 'Development Status :: 2 - developing',
# 'Intended Audience :: Science/Research',
# 'License :: OSI Approved :: BSD License',
# 'Operating System :: POSIX :: Linux',
# 'Programming Language :: Python :: 3.10',
# ],
)