-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·55 lines (49 loc) · 1.61 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
52
53
54
55
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ------------------------------------------------------------------------------
#
# Copyright (c) 2025 Emanuele Ballarin <[email protected]>
# Released under the terms of the MIT License
# (see: https://url.ballarin.cc/mitlicense)
#
# ------------------------------------------------------------------------------
import os
from setuptools import find_packages
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read().strip()
PACKAGENAME: str = "thrmt"
setup(
name=PACKAGENAME,
version="0.0.13",
author="Emanuele Ballarin",
author_email="[email protected]",
url="https://github.com/emaballarin/thrmt",
description="Torched Random Matrix Theory",
long_description=read("README.md"),
long_description_content_type="text/markdown",
keywords=[
"Deep Learning",
"Differentiable Programming",
"Machine Learning",
"PyTorch",
"Random Matrices",
"Random Matrix Theory",
],
license="MIT",
packages=[
package for package in find_packages() if package.startswith(PACKAGENAME)
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Mathematics",
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.10",
install_requires=["torch>=2"],
include_package_data=False,
zip_safe=True,
)