-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (46 loc) · 1.66 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
44
45
46
47
48
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
# Manta Python
# Manta Protocol Implementation for Python
# Copyright (C) 2018-2019 Alessandro Viganò
from io import open
import os
from setuptools import setup
from manta import MANTA_VERSION
here_dir = os.path.dirname(__file__)
with open(os.path.join(here_dir, "requirements.txt")) as req_file:
requirements = req_file.read().splitlines()
with open(os.path.join(here_dir, "requirements-tests.txt")) as req_file:
requirements_tests = req_file.read().splitlines()
with open(os.path.join(here_dir, "README.rst"), encoding="utf-8") as f:
README = f.read()
setup(
name="manta",
version="1.6.3",
description="Manta protocol components",
long_description=README,
packages=["manta", "manta.testing"],
url="https://appiapay.github.io/manta-python",
license="BSD",
author="Alessandro Viganò",
author_email="[email protected]",
install_requires=requirements,
extras_require={"runner": requirements_tests,},
python_requires=">=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: System :: Networking",
"Topic :: Office/Business :: Financial :: Point-Of-Sale",
],
entry_points={
"console_scripts": [
"manta-runner=manta.testing.__main__:main",
"manta-store=manta.testing.__main__:store_main",
"manta-payproc=manta.testing.__main__:payproc_main",
"manta-wallet=manta.testing.__main__:wallet_main",
],
},
)