-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 837 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 837 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
26
from setuptools import setup, find_packages
# Read dependencies from requirements.txt
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="moldga",
version="1.0.0",
description="Self-consistent multi-orbital ladder-DGA code for the multi-band Hubbard Model",
author="Julian Peil",
author_email="julian.peil@tuwien.ac.at",
packages=find_packages(),
install_requires=requirements,
license="MIT",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
],
python_requires=">=3.12",
)