-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
67 lines (62 loc) · 1.84 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
63
64
65
66
67
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import shutil
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join("tempor", "VERSION"), "r", encoding="utf-8") as f:
version = f.read()
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="tempor",
version=version,
description="Ephemeral VPS Creation",
license="GPT3",
long_description=long_description,
author="Wh1t3Fox",
author_email="dev@exploit.design",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
],
keywords=["VPS"],
packages=find_packages(exclude=["contrib", "docs", "tests"]),
package_data={"tempor": ["config", "providers", "playbooks"]},
install_requires=[
"ansible==7.3.0",
"appdirs==1.4.4",
"ansible_runner==2.2.0",
"jsonschema==4.5.1",
"python-terraform==0.10.1",
"rich==12.4.1",
"ssh-config==0.1.1",
"PyYAML==6.0",
"boto3==1.23.1",
"requests==2.31.0",
"google-api-python-client==2.47.0",
],
extras_require={
"doc": ["sphinx"],
"dev": [
"black==22.3.0",
"twine==4.0.0",
"pytest==7.1.2",
"pytest_cov==3.0.0",
"flit==3.7.1",
],
"test": ["pytest", "pytest-cov"],
},
entry_points={
"console_scripts": [
"tempor = tempor.__main__:main",
],
},
include_package_data=True,
)