Skip to content

Commit

Permalink
fixed update project build
Browse files Browse the repository at this point in the history
  • Loading branch information
Lh4cKg committed Dec 25, 2022
1 parent 2ed9084 commit f7fc610
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 44 deletions.
4 changes: 2 additions & 2 deletions geopayment/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
CredoProvider,
IPayProvider,
TBCProvider,
TBCInstallmentProvider
TBCInstallmentProvider,
)

__version__ = '0.5.2'
__version__ = "0.6.0"
3 changes: 3 additions & 0 deletions pyproject.toml
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__'
45 changes: 45 additions & 0 deletions setup.cfg
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
44 changes: 2 additions & 42 deletions setup.py
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()

0 comments on commit f7fc610

Please sign in to comment.