-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
42 lines (37 loc) · 1.05 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
"numpy>=1.17",
"xarray",
"dask[array]", # for `to_netcdf`
]
test_requirements = [
"pytest",
]
setup(
name='result_caching',
version='0.1.0',
description="Cache results for re-use",
long_description=readme,
long_description_content_type='text/markdown',
author="Martin Schrimpf",
author_email='martin.schrimpf@outlook.com',
url='https://github.com/brain-score/result_caching',
packages=find_packages(exclude=['tests']),
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords='caching',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.11',
],
test_suite='tests',
tests_require=test_requirements,
)