-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (39 loc) · 1.23 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
from setuptools import setup, find_packages
__version__ = "0.0.1"
url = "https://github.com/isaaccorley/jax-enhance"
install_requires = [
"jax>=0.2.17",
"flax>=0.3.4",
"einops>=0.3.0",
#"flaxvision @ git+https://://[email protected]/rolandgvc/flaxvision@master"
]
setup_requires = ['pytest-runner']
tests_require = ['pytest', 'pytest-cov', 'mock']
setup(
name='jax_enhance',
packages=find_packages(exclude=['examples']),
version=__version__,
license='Apache License 2.0',
description='Image Super-Resolution Library for Jax',
author='Isaac Corley',
author_email='[email protected]',
url=url,
download_url='{}/archive/{}.tar.gz'.format(url, __version__),
keywords=[
'jax',
'image-super-resolution',
'computer-vision',
'deep-neural-networks',
],
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)