Skip to content

Commit

Permalink
upd setup,py
Browse files Browse the repository at this point in the history
  • Loading branch information
genwchhotmail committed Feb 1, 2021
1 parent 5576e07 commit 3bd12b4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
1 change: 1 addition & 0 deletions .CURVER
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.3
4 changes: 4 additions & 0 deletions requirements.txt
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
23 changes: 12 additions & 11 deletions setup.py
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',
)

0 comments on commit 3bd12b4

Please sign in to comment.