-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
62 lines (58 loc) · 1.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
import os
import re
from setuptools import setup, find_packages
long_description = open(
os.path.join(
os.path.dirname(__file__),
'README.md'
)
).read()
with open("transient/__init__.py", encoding="utf8") as f:
version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)
setup(
name='transient',
author='Adam Schwalm',
version=version,
license='LICENSE',
url='https://github.com/ALSchwalm/transient',
description='A QEMU wrapper adding vagrant support and shared folders',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages('.', exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[
"beautifultable~=1.0.0",
"click~=7.1.2",
"importlib-resources~=1.5.0",
"marshmallow~=3.6.1",
"lark-parser==0.8.5",
"progressbar2~=3.51.3",
"requests~=2.23.0",
"toml==0.10.1",
],
extras_require={
"dev": [
"black==19.10b0",
"mkdocs~=1.1.2",
"mypy==0.800",
"PyHamcrest~=2.0.2",
"typing~=3.7.4.1",
"behave~=1.2.6",
"twine~=3.1.1",
"wheel==0.36.2",
"pytest~=6.2",
"pytest-cov~=2.12",
"reformat-gherkin~=2.0.1",
"vulture~=2.3",
],
},
entry_points={
'console_scripts': [
'transient = transient.cli:main',
]
},
package_data = {
'transient': ['static/*'],
},
keywords=['qemu']
)