Move requirements to setup.py, use pip-compile
This commit is contained in:
parent
b522b7470f
commit
40aa227f30
2 changed files with 94 additions and 29 deletions
37
setup.py
37
setup.py
|
|
@ -13,13 +13,38 @@ setup(
|
|||
platforms=["platform-independent"],
|
||||
packages=find_packages("src"),
|
||||
package_dir={"": "src"},
|
||||
package_data={"strojnadzor": [
|
||||
"DejaVuSans.ttf",
|
||||
"construction.txt",
|
||||
"static/*.css",
|
||||
"templates/*.html",
|
||||
]},
|
||||
package_data={
|
||||
"strojnadzor": [
|
||||
"DejaVuSans.ttf",
|
||||
"construction.txt",
|
||||
"static/*.css",
|
||||
"templates/*.html",
|
||||
]
|
||||
},
|
||||
# install_requires=install_requires,
|
||||
install_requires=[
|
||||
"aldryn-forms",
|
||||
"django-classy-tags>=0.9",
|
||||
"django-cms>=3.7,<3.8",
|
||||
"django-filer>=1.3",
|
||||
"django-mptt>0.9",
|
||||
"django-sekizai>=1.0",
|
||||
"django-treebeard>=4.0,<5.0",
|
||||
"Django<2.2",
|
||||
"djangocms-admin-style>=1.4,<1.5",
|
||||
"djangocms-bootstrap4>=1.5,<1.6",
|
||||
"djangocms-file>=2.3,<3.0",
|
||||
"djangocms-googlemap>=1.3,<1.4",
|
||||
"djangocms-link>=2.5,<2.6",
|
||||
"djangocms-picture>=2.3,<2.4",
|
||||
"djangocms-snippet>=2.2,<2.3",
|
||||
"djangocms-style>=2.2,<2.3",
|
||||
"djangocms-text-ckeditor>=3.7,<3.9",
|
||||
"djangocms-video>=2.1,<2.3",
|
||||
"easy_thumbnails",
|
||||
"gunicorn",
|
||||
"python-dotenv",
|
||||
],
|
||||
# extras_require=extras_require,
|
||||
include_package_data=True,
|
||||
entry_points={
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue