-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 857 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
import setuptools
with open('README.md') as file:
ld = file.read()
setuptools.setup(
name='ssmtoybox',
version='0.1.1a0',
url='https://github.com/jacobnzw/SSMToybox/tree/v0.1.1-alpha',
license='MIT',
author='Jakub Prüher',
author_email='jacobnzw@gmail.com',
description='Local filters based on Bayesian quadrature',
long_description=ld,
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
zip_safe=False,
setup_requires=['nose>=1.0'],
test_suite='nose.collector',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
]
)