-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
51 lines (43 loc) · 1.63 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
47
48
49
50
51
from setuptools import setup
from paddlexde import __version__
def main():
packages = [
"paddlexde",
"paddlexde.functional",
"paddlexde.interpolation",
"paddlexde.solver",
"paddlexde.solver.adaptive_solver",
"paddlexde.solver.fixed_solver",
"paddlexde.utils",
"paddlexde.utils.brownian",
"paddlexde.xde",
]
setup(
name="paddlexde",
version=__version__,
description="PaddleXDE is a libarary that helps you build deep learning applications for PaddlePaddle using ordinary differential equations.",
author="drownfish19",
author_email="drownfish19@gmail.com",
url="https://github.com/DrownFish19/paddlexde", # project home page, if any
download_url="https://github.com/DrownFish19/paddlexde",
license="Apache Software License",
packages=packages,
install_requires=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
# 'Programming Language :: C++',
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)
print("finish")
if __name__ == "__main__":
main()