26 lines
635 B
Python
Executable file
26 lines
635 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
progname = 'pybtex'
|
|
|
|
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"},
|
|
# install_requires=install_requires,
|
|
# extras_require=extras_require,
|
|
include_package_data=True,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'strojnadzor-admin = mysite.__main__:main',
|
|
],
|
|
},
|
|
)
|