Initial commit
This commit is contained in:
commit
f2817bc1f1
17 changed files with 2785 additions and 0 deletions
19
setup.py
Normal file
19
setup.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='cvs-proxy',
|
||||
version='0.1.0',
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
'flask',
|
||||
'python-dotenv'
|
||||
],
|
||||
description='CVS Repository Proxy REST API',
|
||||
author='Your Name',
|
||||
author_email='your.email@example.com',
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'cvs-proxy=cvs_proxy.app:main',
|
||||
],
|
||||
},
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue