forked from solbes/blinpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.01 KB
/
setup.py
File metadata and controls
31 lines (29 loc) · 1.01 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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), "README.md")) as fh:
long_description = fh.read()
setup(
name='blinpy',
version='0.1.7',
packages=['blinpy'],
url='https://github.com/solbes/blinpy',
download_url = 'https://github.com/solbes/blinpy/archive/refs/tags/0.1.7.tar.gz',
license='MIT',
author='Antti Solonen',
author_email='antti.solonen@gmail.com',
description='Bayesian Linear Models in Python',
keywords=['bayes', 'linear', 'gam'],
install_requires=['numpy', 'pandas', 'jsonpickle', 'scipy', 'quadprog'],
extras_require={
'dev': ['pytest']
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3',
],
long_description=long_description,
long_description_content_type="text/markdown",
)