2743
|
1 |
"""
|
|
2 |
Install Beremiz
|
|
3 |
"""
|
|
4 |
from setuptools import setup
|
|
5 |
|
|
6 |
setup(
|
|
7 |
name='beremiz',
|
|
8 |
version='0.1',
|
|
9 |
install_requires=["Twisted == 20.3.0", "attrs == 19.2.0", "Automat == 0.3.0",
|
|
10 |
"zope.interface == 4.4.2", "Nevow == 0.14.5", "PyHamcrest == 2.0.2",
|
|
11 |
"Pygments == 2.9.0", "Pyro == 3.16", "constantly == 15.1.0",
|
|
12 |
"future == 0.18.2", "hyperlink == 21.0.0", "incremental == 21.3.0",
|
|
13 |
"pathlib == 1.0.1", "prompt-toolkit == 3.0.19", "zeroconf-py2compat == 0.19.10",
|
|
14 |
"idna == 2.10"]
|
|
15 |
)
|