We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a63c9d7 commit 408ac3cCopy full SHA for 408ac3c
1 file changed
setup.py
@@ -2,17 +2,16 @@
2
3
from setuptools import setup
4
5
+import pandas_toolkit
6
+
7
_here = os.path.abspath(os.path.dirname(__file__))
8
9
with open(os.path.join(_here, "README.md"), encoding="utf-8") as f:
10
long_description = f.read()
11
-with open(os.path.join(_here, "pandas_toolkit", "_version.py"), encoding="utf-8") as f:
- version = f.read()
12
-
13
setup(
14
name="pandas_toolkit",
15
- version=version,
+ version=pandas_toolkit.__version__,
16
description="A collection of pandas accessors to help with common machine learning related functionality.",
17
long_description=long_description,
18
long_description_content_type="text/markdown",
0 commit comments