-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (21 loc) · 673 Bytes
/
setup.py
File metadata and controls
27 lines (21 loc) · 673 Bytes
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
import os
from setuptools import find_packages, setup
NAME = "ynab-sdk"
VERSION = "0.5.0"
REQUIRES = ["requests", "python-dateutil", "redis"]
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name=NAME,
version=VERSION,
description="YNAB API Endpoints",
author_email="a.roggeri.c@gmail.com",
url="https://github.com/andreroggeri/ynab-sdk-python",
keywords=["YNAB", "YNAB API Endpoints", ""],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description=read("README.md"),
long_description_content_type="text/markdown",
)