This repository was archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.44 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.44 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
#!/usr/bin/python
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
setup(name="frnn_loader",
version="0.0.1",
packages=find_packages(),
# scripts = [""],
description="Pytorch-style DataLoaders for FRNN dataset.",
long_description="""Add description here""",
author="Ralph Kube",
author_email="rkube@pppl.gov",
maintainer="Ralph Kube",
maintainer_email="rkube@pppl.gov",
# url = "http://",
download_url="https://git.pppl.gov/rkube/frnn-loader",
# license = "Apache Software License v2",
test_suite="tests",
install_requires=[
"torch>=1.12",
"scipy",
"numpy>=1.23",
"sphinx",
"sphinx-rtd-theme",
"flake8",
"black"
],
# TODO(KGF): add optional feature specs for [deephyper,balsam,
# readthedocs,onnx,keras2onnx]
tests_require=[],
classifiers=["Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: System :: Distributed Computing",
],
platforms="Linux",
)