We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afcb1c4 commit 82655deCopy full SHA for 82655de
setup.py
@@ -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