-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
51 lines (49 loc) · 1.41 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
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="terraenv",
version=os.environ['VERSION'],
author="Aarat Nathwani",
author_email="me@aarat.com",
description="Terraform and Terragrunt Version Manager",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/aaratn/terraenv",
packages=setuptools.find_packages(),
license='MIT',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
scripts=['terraenv'],
install_requires=[
"altgraph==0.16.1",
"appdirs==1.4.3",
"beautifulsoup4==4.8.1",
"bs4==0.0.1",
"certifi==2019.9.11",
"chardet==3.0.4",
"cssselect==1.1.0",
"fake-useragent==0.1.11",
"idna==2.8",
"lxml==4.6.2",
"macholib==1.11",
"parse==1.12.1",
"pyee==6.0.0",
"pyppeteer==0.0.25",
"pyquery==1.4.1",
"python-dotenv==0.10.3",
"requests==2.22.0",
"requests-html==0.10.0",
"six==1.13.0",
"soupsieve==1.9.5",
"tqdm==4.38.0",
"urllib3==1.25.7",
"w3lib==1.21.0",
"websockets==8.1"
]
)