-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (22 loc) · 969 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
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
keywords = "paynet, paynet-merchant, paynet-pkg, paynet-api, paynet-python-integration, paynet-integration, paynet-python, paynet-gateway, paynet-payment, paynet-payment-gateway, paynet-integration-python, paynet-api-client, paynet-django, paynet-rest-api" # noqa
setup(
name="paynet-pkg",
version="0.3",
license="MIT",
author="Muhammadali Akbarov",
author_email="[email protected]",
packages=find_packages(),
url="https://github.com/Muhammadali-Akbarov/paynet-pkg",
keywords=keywords,
install_requires=[
"requests==2.*",
"dataclasses==0.*;python_version<'3.7'", # will only install on py3.6
"djangorestframework==3.*",
],
long_description=long_description,
long_description_content_type="text/markdown",
)