forked from fancompute/ceviche
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 835 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
readme = f.read()
dependencies = [
'numpy>=1.16.2',
'scipy>=1.2.1',
'matplotlib>=3.0.3',
'autograd>=1.3',
'pyMKL>=0.0.3'
]
setup(
name='ceviche',
version='0.1.3',
description='Ceviche',
long_description=readme,
long_description_content_type="text/markdown",
author='Ceviche Package Contributors',
author_email='[email protected]',
url='https://github.com/fancompute/ceviche',
packages=find_packages(),
install_requires=dependencies,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
)