-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
52 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ['setuptools>=57.0.0', 'wheel'] | ||
build-backend = 'setuptools.build_meta:__legacy__' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
[metadata] | ||
name = geopayment | ||
version = attr: geopayment.__version__ | ||
url = https://github.com/Lh4cKg/geopayment | ||
author = Lasha Gogua | ||
author_email = [email protected] | ||
description = Python SDK for Georgian Payment Providers | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
license = MIT | ||
classifiers = | ||
Environment :: Web Environment | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
Topic :: Software Development :: Libraries :: Application Frameworks | ||
Topic :: Internet | ||
Topic :: Internet :: WWW/HTTP | ||
Development Status :: 5 - Production/Stable | ||
Programming Language :: Python :: 3.7 | ||
project_urls = | ||
Documentation = https://github.com/Lh4cKg/geopayment/tree/main/docs | ||
Release notes = https://github.com/Lh4cKg/geopayment/releases | ||
Source = https://github.com/Lh4cKg/geopayment | ||
|
||
[options] | ||
python_requires = >=3.7 | ||
packages = find: | ||
include_package_data = true | ||
zip_safe = false | ||
install_requires = | ||
cryptography >= 3.3.2 | ||
pyOpenSSL>= 21.0.0 | ||
requests >= 2.26.0 | ||
|
||
[flake8] | ||
exclude = example,docs,certs | ||
max-line-length = 79 | ||
|
||
[isort] | ||
profile = black | ||
default_section = THIRDPARTY | ||
known_first_party = geopayment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,4 @@ | ||
from setuptools import setup, find_packages | ||
from geopayment import __version__ | ||
from setuptools import setup | ||
|
||
|
||
def read(filename): | ||
with open(filename, encoding='utf-8') as fd: | ||
return fd.read() | ||
|
||
|
||
setup( | ||
name='geopayment', | ||
version=__version__, | ||
author='Lasha Gogua', | ||
author_email='[email protected]', | ||
description='Python SDK for Georgian Payment Providers', | ||
long_description=read('README.md'), | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/Lh4cKg/geopayment', | ||
license='MIT', | ||
keywords=['python', 'geopayment', 'payments', 'sdk', 'merchant'], | ||
platforms=['OS Independent'], | ||
classifiers=[ | ||
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', | ||
'Topic :: Internet :: WWW/HTTP :: Site Management', | ||
'Topic :: Software Development :: Libraries :: Application Frameworks', | ||
'Development Status :: 5 - Production/Stable', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
install_requires=[ | ||
'cryptography>=3.3.2', | ||
'pyOpenSSL>=21.0.0', | ||
'requests>=2.26.0', | ||
], | ||
packages=find_packages(exclude=['example', 'docs']), | ||
include_package_data=True, | ||
zip_safe=False, | ||
python_requires='>=3.7', | ||
) | ||
setup() |