-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
36 lines (33 loc) · 993 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="einx",
version="0.1.3",
python_requires=">=3.8",
description="Tensor Operations Expressed in Einstein-Inspired Notation",
long_description=long_description,
long_description_content_type="text/markdown",
author="Florian Fervers",
author_email="[email protected]",
url="https://github.com/fferflo/einx",
packages=find_packages(),
license="MIT",
include_package_data=True,
install_requires=[
"numpy",
"sympy",
"frozendict",
],
extras_require={
"torch": ["torch>=2"],
"keras": ["keras>=3"],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)