Skip to content

Commit

Permalink
Add pypi setup files
Browse files Browse the repository at this point in the history
  • Loading branch information
jcwillox committed Aug 15, 2020
1 parent 6ddf60e commit f8f010d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[metadata]
license = MIT
license_file = LICENSE
platforms = any
description = 💎 Typed python client for up's banking API
long_description = file: README.md
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from setuptools import find_packages, setup

PACKAGE_NAME = "up-bank-api"
VERSION = "0.1.0"
PROJECT_URL = "https://github.com/jcwillox/up-bank-api"
PROJECT_AUTHOR = "Joshua Cowie-Willox"
DOWNLOAD_URL = f"{PROJECT_URL}/archive/{VERSION}.zip"
PACKAGES = find_packages()

if __name__ == "__main__":
setup(
name=PACKAGE_NAME,
version=VERSION,
url=PROJECT_URL,
download_url=DOWNLOAD_URL,
author=PROJECT_AUTHOR,
packages=PACKAGES,
python_requires=">=3.7",
install_requires=["requests>=2.14.0"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)

0 comments on commit f8f010d

Please sign in to comment.