-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathPipfile
47 lines (43 loc) · 967 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
41
42
43
44
45
46
47
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
bump2version = "*"
setuptools = "*"
wheel = "*"
twine = "*"
secretstorage = {markers = "sys_platform == 'linux'"}
keyring = "==19.1.0"
black = "==19.10b0"
pipenv-setup = "*"
pytest = "*"
ovisbot = {editable = true,path = "."}
flake8 = "*"
sphinx = "*"
[packages]
discord-py = "2.3.2"
colorama = "*"
pytz = "*"
python-dotenv = "*"
pymodm = "*"
texttable = "*"
requests = "*"
colorthief = "*"
beautifulsoup4 = "*"
parse = "*"
pycryptodome = "*"
gitpython = "*"
pynacl = "*"
python-dateutil = "*"
click = "*"
[requires]
python_version = "3.9"
[scripts]
build = "python setup.py sdist bdist_wheel"
publish = "twine upload dist/*"
reformat = "bash -c \"python -m black $(git ls-files '*.py')\""
setupenv = "python tools/setupenv.py"
setup-sync = "pipenv-setup sync"
docker = "docker-compose up"
docker-prod = "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up"