-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
51 lines (46 loc) · 1.68 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
#! /usr/bin/env python
from __future__ import annotations
from setuptools import find_packages, setup
ver_dic = {}
version_file_name = "pytato/version.py"
with open(version_file_name) as version_file:
version_file_contents = version_file.read()
exec(compile(version_file_contents, version_file_name, "exec"), ver_dic)
setup(
name="pytato",
version=ver_dic["VERSION_TEXT"],
description="Get Descriptions of Array Computations via Lazy Evaluation",
long_description=open("README.rst").read(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
],
python_requires="~=3.8",
install_requires=[
"loopy>=2020.2",
"pytools>=2024.1.14",
"immutabledict",
"attrs",
"bidict",
"typing_extensions>=4",
],
package_data={"pytato": ["py.typed"]},
author="Andreas Kloeckner, Matt Wala, Xiaoyu Wei",
url="https://github.com/inducer/pytato",
author_email="inform@tiker.net",
license="MIT",
packages=find_packages(),
)