-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (57 loc) · 1.64 KB
/
Copy pathsetup.py
File metadata and controls
60 lines (57 loc) · 1.64 KB
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
56
57
58
59
60
import re
from setuptools import setup
version = re.search(
r'^__version__\s*=\s*"(.*)"',
open('astrolabe/main.py').read(),
re.M
).group(1)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="astrolabe",
version=version,
author="etherops",
author_email="patrick@golightwire.com",
description="It's like a web-crawler, but for microservices",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/magellanbot/astrolabe",
packages=['astrolabe', 'astrolabe.plugins'],
entry_points={
"console_scripts": ['astrolabe = astrolabe.main:main']
},
install_requires=[
'asyncssh~=2.14',
'boto3~=1.16',
'configargparse~=1.2',
'coolname~=2.0',
'ipinfo~=5.1',
'faker>=4.1',
'kubernetes_asyncio~=30.3',
'paramiko~=3.4',
'pyyaml~=6.0',
'graphviz>=0.13',
'termcolor~=2.0',
'neomodel~=5.3',
'neo4j~=5.19.0', # neomodel 5.3.1 depends on neo4j~=5.19.0
'cryptography<43.0.0' # cryptography warnings: https://github.com/paramiko/paramiko/issues/2419
],
extras_require={
'test': [
'prospector~=1.2',
'pytest~=7.0',
'pytest-asyncio~=0.14',
'pytest-cov~=2.10',
'pytest-mock~=3.4'
]
},
setup_requires=[
'wheel>=0.36'
],
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License ",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
)