Skip to content

Commit 82655de

Browse files
committed
added setup.py
1 parent afcb1c4 commit 82655de

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
7+
8+
setuptools.setup(
9+
name="linearcorex",
10+
version="0.53",
11+
author="Greg Ver Steeg",
12+
author_email="gregv at isi.edu",
13+
description="Linear CorEx finds latent factors that explain relationships in data.",
14+
long_description_content_type="text/markdown",
15+
url="https://github.com/gregversteeg/linearcorex",
16+
packages=setuptools.find_packages(),
17+
classifiers=[
18+
"Programming Language :: Python :: 3",
19+
"Operating System :: OS Independent",
20+
],
21+
)

0 commit comments

Comments
 (0)