-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.28 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
39
40
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
with open('LICENSE', 'r') as f:
lic = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='mfs',
version='0.1.0',
author='Zheng Zhao',
author_email='[email protected]',
description='Stochastic filtering with moment representations',
keywords=['stochastic differential equations',
'statistics',
'filtering',
'smoothing'],
long_description=long_description,
long_description_content_type='text/markdown',
license=lic,
url='https://github.com/spdes/mfs',
download_url='https://github.com/spdes/mfs',
packages=['mfs'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics'
],
python_requires='>=3.7',
install_requires=requirements
)