Convert into a proper Python package
This commit is contained in:
parent
ec175fe0c6
commit
c975ca6f19
22 changed files with 59 additions and 0 deletions
26
setup.py
Executable file
26
setup.py
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
#!/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',
|
||||
],
|
||||
},
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue