Skip to content

Commit

Permalink
Update for pypi (#13)
Browse files Browse the repository at this point in the history
* Create pythonpackage.yml

* Update pythonpackage.yml

* update

* update
  • Loading branch information
Han Wang committed Mar 23, 2020
1 parent 0b0d63c commit 4cb9fba
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
from setuptools import setup, find_packages

VERSION = "0.0.2"
VERSION = "0.0.3"

with open("README.md") as f:
LONG_DESCRIPTION = f.read()

setup(
name="adagio",
version=VERSION,
packages=find_packages(),
description="A Dag IO Framework",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="MIT",
author="Han Wang",
author_email="goodwanghan@gmail.com",
keywords="adagio dag directed acyclic graph",
url="http://github.com/goodwanghan/adagio",
install_requires=["pandas"],
extras_require={},
classifiers=[
Expand All @@ -20,8 +28,10 @@
"License :: OSI Approved :: MIT License",
# Specify which pyhton versions that you want to support
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3",
Expand Down

0 comments on commit 4cb9fba

Please sign in to comment.