-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
46 lines (42 loc) · 1.65 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
import setuptools
import os
import sys
if sys.platform == 'darwin':
os.environ['MACOSX_DEPLOYMENT_TARGET'] = '10.9'
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as f:
install_requires = [x.strip() for x in f.readlines()]
setuptools.setup(
name="tensordiffeq",
version="0.2.0",
author="Levi McClenny",
description="Distributed PDE Solver in Tensorflow",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tensordiffeq/tensordiffeq",
download_url="https://github.com/tensordiffeq/tensordiffeq/tarball/v0.2.0",
install_requires=install_requires,
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
],
python_requires='>=3.6',
)