19 lines
No EOL
423 B
Python
19 lines
No EOL
423 B
Python
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',
|
|
],
|
|
},
|
|
) |