Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tangwei94 committed Nov 6, 2019
1 parent c00ba52 commit 15d9b85
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="tensorgrad",
version="0.0.1",
author="Lei Wang",
author_email="wanglei@iphy.ac.cn",
description="Differentiable Programming Tensor Networks",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="Differentiable Programming Tensor Networks",
url="https://github.com/wangleiphy/tensorgrad",
packages=["tensornets"],
install_requires=[
"numpy",
"torch>=1.3.0",
],
python_requires='>=3',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)

0 comments on commit 15d9b85

Please sign in to comment.