-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (28 loc) · 995 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
30
from setuptools import setup, find_packages
VERSION = '1.0.1'
DESCRIPTION = ' vPOS Python Library '
LONG_DESCRIPTION = open("README.md").read()
setup(
name='vpos',
version=VERSION,
author='vPOS Team',
author_email='[email protected]',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
url="https://pypi.org/project/vpos/",
install_requires=open('requirements.txt').readlines(),
tests_require=['pytest'],
keywords=['payment', 'online', 'vpos', 'pos', 'emis'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows"
]
)