-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 945 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
31
32
33
34
from setuptools import setup, find_packages
VERSION = '0.0.1'
DESCRIPTION = 'Massa test framework'
LONG_DESCRIPTION = 'A framework for Massa core dev to develop functional tests'
# Setting up
setup(
name="massa_test_framework",
version=VERSION,
author="sd",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[
"paramiko==3.2",
"requests==2.31",
"tomlkit==0.11",
"base58==2.1",
"blake3==0.3.3",
"varint==1.0.2",
"PyNaCl==1.5.0",
"patch-ng==1.17.4",
"massa-proto-python==0.0.1",
"kubernetes==28.1.0",
], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
keywords=['python'],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
]
)