-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
80 lines (66 loc) · 2.11 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
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Import python libs
import os
import sys
import shutil
from setuptools import setup, Command
NAME = "idem-azurerm"
PYNAME = "idem_azurerm"
DESC = "Idem language provider for Azure"
# Version info -- read without importing
_locals = {}
with open("{}/version.py".format(PYNAME)) as fp:
exec(fp.read(), None, _locals)
VERSION = _locals["version"]
SETUP_DIRNAME = os.path.dirname(__file__)
if not SETUP_DIRNAME:
SETUP_DIRNAME = os.getcwd()
with open("README.md", encoding="utf-8") as f:
LONG_DESC = f.read()
with open("requirements.txt") as f:
REQUIREMENTS = f.read().splitlines()
class Clean(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
for subdir in (PYNAME, "tests"):
for root, dirs, files in os.walk(
os.path.join(os.path.dirname(__file__), subdir)
):
for dir_ in dirs:
if dir_ == "__pycache__":
shutil.rmtree(os.path.join(root, dir_))
def discover_packages():
modules = []
for package in (PYNAME,):
for root, _, files in os.walk(os.path.join(SETUP_DIRNAME, package)):
pdir = os.path.relpath(root, SETUP_DIRNAME)
modname = pdir.replace(os.sep, ".")
modules.append(modname)
return modules
setup(
name=NAME,
author="EITR Technologies, LLC",
author_email="[email protected]",
url="https://github.com/eitrtechnologies/idem-azurerm",
version=VERSION,
install_requires=REQUIREMENTS,
description=DESC,
long_description=LONG_DESC,
long_description_content_type="text/markdown",
python_requires=">=3.6",
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 5 - Production/Stable",
],
packages=discover_packages(),
cmdclass={"clean": Clean},
)