forked from mjr/juno-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 794 Bytes
/
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
from setuptools import setup, find_packages
__description__ = "Juno Python"
with open("README.md", "r") as fh:
__long_description__ = fh.read()
__author__ = "Manaia Junior"
__author_email__ = "[email protected]"
setup(
name="juno-python",
version="0.3.0",
url="https://github.com/mjr/juno-python",
author=__author__,
author_email=__author_email__,
license="MIT",
description=__description__,
long_description=__long_description__,
long_description_content_type="text/markdown",
keywords="Payment, Juno",
packages=find_packages(),
install_requires=["requests>=2.24.0"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
)