-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
24 lines (21 loc) · 887 Bytes
/
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
import setuptools
with open("./prosper_nn/README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
requirements = []
with open("requirements.txt", "r", encoding="utf-8") as f:
packages = f.read().split("\n")
for pack in packages:
requirements.append(pack)
setuptools.setup(
name="prosper_nn", # Replace with your own username
version="0.3.2",
author="Nico Beck, Julia Schemm",
author_email="nico.beck@iis.fraunhofer.de",
description="Package contains, in PyTorch implemented, neural networks with problem specific pre-structuring architectures and utils that help building and understanding models.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=requirements,
python_requires=">=3.6",
)