-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (27 loc) · 1022 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
23
24
25
26
27
28
29
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except (ImportError, OSError, RuntimeError):
long_description = 'Usage available at http://github.com/giantas/pyconfigreader'
setup(name='pyconfigreader',
version='0.10.0',
description='A module for handling simple configuration requirements',
long_description=long_description,
url='http://github.com/giantas/pyconfigreader',
author='Aswa Paul',
license='MIT',
packages=['pyconfigreader'],
install_requires=[],
zip_safe=False,
python_requires='>3.4, <3.10',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
)