28 lines
745 B
Python
Executable file
28 lines
745 B
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,
|
|
# extras_require=extras_require,
|
|
include_package_data=True,
|
|
entry_points={
|
|
"console_scripts": ["strojnadzor-admin = strojnadzor.__main__:main"],
|
|
},
|
|
)
|