You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

16 lines
327 B

from setuptools import setup, find_packages
setup(
name='env_manager',
version='0.1',
packages=find_packages(),
install_requires=[
'python-arango',
'python-dotenv'
],
entry_points={
'console_scripts': [
'env_manager=env_manager.env_manager:main',
],
},
)