-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 700 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 700 Bytes
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
from setuptools import setup, find_packages
__version__ = "0.4.0"
setup(
name="gradflow",
version=__version__,
description="A simple tensor library powered by numpy",
packages=find_packages(),
url="https://github.com/agnarbjoernstad/gradflow",
author="Agnar Martin Bjørnstad",
author_email="agnar.bjornstad@gmail.com",
license="MIT",
install_requires=[
"numpy>=2.0",
"matplotlib>=3.0",
"networkx>=2.0",
],
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)