Skip to content

Commit

Permalink
switch to setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
minsis committed Aug 6, 2019
1 parent 7948c48 commit 5530f18
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
3 changes: 3 additions & 0 deletions pynabapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
"""

from .ynab import YnabClient


name = "pynabapi"
17 changes: 12 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,25 @@
Copyright (c) 2019, iRunAsRoot
"""

from distutils.core import setup
from setuptools import setup

with open("README.md", "r") as md:
long_description = md.read()


setup(
name="pynab-client",
packages=["pynabapi"],
version="0.1",
packages=["pynabapi", "pynabapi.model"],
version="0.2",
license="GNU GPLv3",
description="Python API to access YNAB v1 API",
long_description=long_description,
long_description_content_type="text/markdown",
author="Dennis Whitney",
author_email="dennis@irunasroot.com",
url="https://github.com/irunasroot/pynab-client",
download_url="https://github.com/irunasroot/pynab-client/archive/v0.1.tar.gz",
keywords=["ynab", "pynab", "budgeting", "budgets"],
download_url="https://github.com/irunasroot/pynab-client/archive/v0.2.tar.gz",
keywords=["ynab", "pynab", "budgeting", "budgets", "youneedabudget"],
install_requires=[
"requests"
],
Expand Down

0 comments on commit 5530f18

Please # to comment.