forked from nchopin/particles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 loc) · 1.18 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
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
from setuptools import setup
import sys
import warnings
NAME = 'particles'
DESCRIPTION = 'Sequential Monte Carlo in Python'
with open('README.md') as f:
long_description = f.read()
METADATA = dict(
name=NAME,
version='0.3',
url='http://github.com/nchopin/particles/',
license='MIT',
author='Nicolas Chopin',
install_requires=['numpy>=1.18',
'scipy>=1.7',
'numba',
'joblib'
],
author_email='[email protected]',
description=DESCRIPTION,
long_description = long_description,
long_description_content_type="text/markdown",
packages=[NAME],
include_package_data=True,
platforms='any',
classifiers=[
'Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Mathematics',
]
)
setup(**METADATA)