-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (47 loc) · 1.25 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
47
48
49
50
51
52
import os
from setuptools import find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, "README.md")).read()
except IOError:
README = ""
version = "0.0.1"
install_requires = [
"numpy>=1.12",
"jaxlib>=0.1.41",
"jax>=0.1.59",
"flax",
"matplotlib",
"dataclasses",
"msgpack",
]
tests_require = [
]
setup(
name="ladax",
version=version,
description="Ladax: layered distribution models using FLAX/JAX.",
long_description="\n\n".join([README]),
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="",
author="Dan Tait",
author_email="tait.djk@gmail.com",
url="https://github.com/danieljtait/ladax",
license="Apache",
packages=find_packages(),
include_package_data=False,
zip_safe=False,
install_requires=install_requires,
extras_require={
"testing": tests_require,
},
)