-
Notifications
You must be signed in to change notification settings - Fork 68
/
setup.py
48 lines (41 loc) · 1.14 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
#!/usr/bin/env python3
"Setuptools params"
from setuptools import setup, find_packages
VERSION = '0.2'
modname = distname = 'p4utils'
def readme():
with open('README.md','r') as f:
return f.read()
setup(
name=distname,
version=VERSION,
description='P4 language and bmv2 model utilities',
author='Edgar Costa Molero',
author_email='[email protected]',
packages=find_packages(),
long_description=readme(),
entry_points={'console_scripts': ['p4run = p4utils.p4run:main']},
include_package_data = True,
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python 3",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: System :: Networking",
],
keywords='networking p4 mininet',
license='GPLv2',
install_requires=[
'googleapis-common-protos >= 1.52',
'grpcio == 1.44.0',
'ipaddr',
'ipaddress',
'networkx',
'p4runtime',
'protobuf == 3.20.3',
'psutil',
'scapy >= 2.5.0',
'setuptools',
],
extras_require={}
)