forked from singular-labs/Singular-SKAdNetwork-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (36 loc) · 1.04 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup
long_description = """vap
=======================
Apple postback verifier. See `readme`_
Installation
------------
$ pip install vap
.. _readme: https://github.com/d-ganchar/vap
"""
setup(
name='vap',
version='1.1.0',
description='Apple postback verifier',
long_description=long_description,
url='https://github.com/d-ganchar/vas',
author='Danila Ganchar',
author_email='danila.ganchar@gmail.com',
license='MIT',
keywords='verify apple signature postback',
packages=['vap'],
install_requires=['fastecdsa==2.1.2'],
entry_points={
'console_scripts': [
'vap = vap.cli:run',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)