-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (60 loc) · 2 KB
/
Copy pathsetup.py
File metadata and controls
64 lines (60 loc) · 2 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
"""Setup script for JunGrad."""
from pathlib import Path
from setuptools import find_packages, setup
# Read README
readme_file = Path(__file__).parent / "README.md"
long_description = readme_file.read_text(encoding="utf-8") if readme_file.exists() else ""
setup(
name="jungrad",
version="0.2.0",
description="A robust N-D autograd library with comprehensive ops, NN layers, and optimizers",
long_description=long_description,
long_description_content_type="text/markdown",
author="JunGrad Contributors",
url="https://github.com/junkim100/JunGrad",
packages=find_packages(exclude=["tests", "examples", "*.tests", "*.tests.*"]),
python_requires=">=3.10",
install_requires=[
"numpy>=1.24.0",
],
extras_require={
"dev": [
"black>=24.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"build>=1.2.1",
"twine>=4.0.2",
],
"sparse": [
"scipy>=1.10.0",
],
"viz": [
"graphviz>=0.20.0",
],
"tutorial": [
"datasets>=4.4.0",
"matplotlib>=3.7.0",
"scikit-learn>=1.2.0",
"ipykernel>=6.0.0",
],
},
project_urls={
"Homepage": "https://github.com/junkim100/JunGrad",
"Documentation": "https://github.com/junkim100/JunGrad#readme",
"Issues": "https://github.com/junkim100/JunGrad/issues",
"Source": "https://github.com/junkim100/JunGrad",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)