-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.41 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
from setuptools import setup, find_packages
import plasma.version
# try:
# os.environ['MPICC'] = subprocess.check_output(
# "which mpicc", shell=True).decode("utf-8")
# except BaseException:
# print("Please set up the OpenMPI environment")
# exit(1)
setup(
name="plasma",
version=plasma.version.__version__,
packages=find_packages(),
# scripts = [""],
description="PyTorch models for fusion disruption prediction",
long_description="""Add description here""",
author="Ge Dong, Kyle Gerard Felker",
author_email="[email protected]",
maintainer="Kyle Gerard Felker",
maintainer_email="[email protected]",
# url = "http://",
download_url="https://github.com/PPPLDeepLearning/fusiondl-torch",
# license = "Apache Software License v2",
# test_suite="tests",
install_requires=[
"pathos",
"matplotlib>=2.0.2",
"pre-commit",
# 'scikit-learn',
# 'joblib',
],
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="Any",
)