-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (22 loc) · 720 Bytes
/
setup.py
File metadata and controls
28 lines (22 loc) · 720 Bytes
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
from setuptools import setup, find_namespace_packages
exec(open('mocat/version.py').read())
with open('README.md') as f:
long_description = f.read()
setup(
name='mocat',
version=__version__,
url='http://github.com/SamDuffield/mocat',
author='Sam Duffield',
python_requires='>=3.6',
install_requires=['jax',
'jaxlib',
'matplotlib',
'decorator',
'numpy'],
packages=find_namespace_packages(),
author_email='s@mduffield.com',
description='All things Monte Carlo, written in JAX',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT'
)