-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5576e07
commit 3bd12b4
Showing
3 changed files
with
17 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
gwcomm-genwch | ||
Werkzeug==0.16.1 | ||
pandas | ||
pyarrow==0.16.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
import setuptools | ||
|
||
import os | ||
pkgname = os.path.basename(os.getcwd()) | ||
with open(".CURVER", "r", encoding="utf-8") as fh: | ||
curver = fh.readline() | ||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
f = open("requirements.txt", "r") | ||
depends = f.read().split("\n") | ||
f.close() | ||
|
||
setuptools.setup( | ||
name="gwpd-genwch", # Replace with your own username | ||
version="0.0.2", | ||
name=f"{pkgname}-genwch", # Replace with your own username | ||
version=f"{curver}", | ||
author="genwch", | ||
author_email="", | ||
description="Pandas as table package", | ||
description=f"{pkgname}", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/genwch/gwpd", | ||
url=f"https://github.com/genwch/{pkgname}", | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
install_requires=[ | ||
"gwcomm-genwch", | ||
"Werkzeug==0.16.1", | ||
"pandas", | ||
"pyarrow==0.16.0" | ||
], | ||
install_requires=depends, | ||
python_requires='>=3.7', | ||
) |