forked from matehackers/matebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
40 lines (36 loc) · 833 Bytes
/
Pipfile
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
[packages]
urllib3 = "*"
python-dotenv = "*"
requests = "*"
flup = "*"
gunicorn = "*"
pytz = "*"
dataset = "*"
PyMySQL = "*"
Babel = "*"
uvloop = {version = "*",sys_platform = "!= 'win32'"}
brotlipy = {version = "*",sys_platform = "!= 'win32'"}
ujson = "*"
cchardet = "*"
aiodns = "*"
aiohttp = {extras = ["speedups"],version = "*"}
hypercorn = "*"
pydantic = "*"
validators = "*"
"discord.py" = "*"
emojis = "*"
redis = "*"
[requires]
python_version = "3"
[scripts]
nasabot = 'python app.py discord' # Vai usar 'nasabot' por padrão
prod = 'python app.py discord production'
test = 'python app.py discord testing'
dev = 'python app.py discord development'
### O mesmo que 'pipenv run python app.py discord nasabot'
pure = 'python app.py'