-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (33 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""
setup.py
Author: Dennis Whitney
Email: [email protected]
Copyright (c) 2019, iRunAsRoot
"""
from setuptools import setup
with open("README.md", "r") as md:
long_description = md.read()
setup(
name="pynab-client",
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="[email protected]",
url="https://github.com/irunasroot/pynab-client",
download_url="https://github.com/irunasroot/pynab-client/archive/v0.2.tar.gz",
keywords=["ynab", "pynab", "budgeting", "budgets", "youneedabudget"],
install_requires=[
"requests"
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
]
)