forked from thefakhir/dict-config-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (19 loc) · 749 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='dict-config-parser',
version='v1.0',
description='A custom wrapper, written in python, for reading and writing ini files, using simple dictionaries.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/thefakhir/dict-config-parser',
author='M Fakhir Khan',
author_email='[email protected]',
keywords='config parser configparser',
python_requires='>=3.5, <3.8',
packages=['dict_config_parser']
)