53 lines
1.5 KiB
Python
Executable file
53 lines
1.5 KiB
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="strojnadzor",
|
|
version="0.0.1",
|
|
description="Strojnadzor site",
|
|
author="Andrey Golovizin",
|
|
author_email="ag@sologoc.com",
|
|
url="https://golovizin.ru/",
|
|
license="AGPLv3",
|
|
platforms=["platform-independent"],
|
|
packages=find_packages("src"),
|
|
package_dir={"": "src"},
|
|
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={
|
|
"console_scripts": ["strojnadzor-admin = strojnadzor.__main__:main"],
|
|
},
|
|
)
|