forked from germaniumhq/adhesive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.01 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
from setuptools import setup
from setuptools import find_packages
with open("README.rst") as readme_file:
readme = readme_file.read()
packages = find_packages()
extras_require = {"ssh": ["paramiko==2.6.0"]}
setup(
name="adhesive",
version="2021.4.3",
description="adhesive",
long_description=readme,
author="Bogdan Mustiata",
author_email="[email protected]",
license="BSD",
entry_points={"console_scripts": ["adhesive = adhesive.mainapp:__main"]},
install_requires=[
"addict",
"networkx==2.3",
"npyscreen==4.10.5",
"colorama >=0.4.3",
"termcolor_util >= 1.2.0, <2.0",
"PyYAML == 5.1.2",
"click >= 7.0, <8.0",
"schedule==0.6.0",
"python-dateutil==2.8.1",
"yamldict >= 1.2.0, <2.0",
"Pebble==4.6.1",
"cached_task==2021.4.3",
],
extras_require=extras_require,
packages=packages,
package_data={
"": ["*.txt", "*.rst"],
"adhesive": ["py.typed"],
},
)