-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (40 loc) · 961 Bytes
/
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
#!/usr/bin/python
from setuptools import find_packages, setup
setup(
name="mitama",
install_requires=[
"sqlalchemy",
"bcrypt",
"pyjwt",
"jinja2",
"cryptography",
"python-magic",
"watchdog",
"yarl",
"pysaml2",
"tzlocal",
],
extra_requires={"develop": ["unittest", "flake8", "isort", "black"]},
use_scm_version=True,
setup_requires=["setuptools_scm"],
packages=find_packages(),
package_data={
"mitama.portal": [
"templates/*.html",
"templates/**/*.html",
"static/*",
],
"mitama.http": [
"templates/*.html",
],
"mitama.app": [
"static/*",
],
"mitama": [
"skeleton/*",
"skeleton/**/*",
"skeleton/**/**/*",
],
},
entry_points={"console_scripts": ["mitama = mitama.commands:exec"]},
)