generated from ashleve/lightning-hydra-template
-
Notifications
You must be signed in to change notification settings - Fork 58
/
setup.py
29 lines (26 loc) · 1.04 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
#!/usr/bin/env python
from setuptools import setup, find_packages
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="pinnstorch",
version="0.1.2",
description="An implementation of PINNs in PyTorch using Lightning and Hydra.",
author="Reza Akbarian Bafghi",
author_email="reza.akbarianbafghi@coloardo.edu",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/rezaakb/pinns-torch",
license='BSD-3-Clause',
install_requires=["hydra-core", "scipy", "pyDOE", "matplotlib", "rootutils", "tqdm", "rich"],
packages=find_packages(include='pinnstorch.*'),
# use this to customize global commands available in the terminal after installing the package
include_package_data=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)