forked from venthur/dotenv-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
from setuptools import setup
meta = {}
exec(open('./dotenv_cli/version.py').read(), meta)
meta['long_description'] = open('./README.md').read()
setup(
name='dotenv-cli',
version=meta['__VERSION__'],
description='Simple dotenv CLI.',
long_description=meta['long_description'],
long_description_content_type='text/markdown',
keywords='dotenv cli .env',
author='Bastian Venthur',
author_email='mail@venthur.de',
url='https://github.com/venthur/dotenv-cli',
python_requires='>=3.7',
extras_require={
'dev': [
'pytest',
'pytest-cov',
'flake8',
'wheel',
'twine',
]
},
packages=['dotenv_cli'],
entry_points={
'console_scripts': [
'dotenv = dotenv_cli.cli:main'
]
},
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)