-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (27 loc) · 927 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
30
#!/usr/bin/env python
from setuptools import setup
import str2bool
setup(name='str2bool',
version=str2bool.__version__,
description='String to Boolean conversion',
author='Khaled Monsoor',
author_email='k@kmonsoor.com',
maintainer='Khaled Monsoor',
maintainer_email='k@kmonsoor.com',
url='https://github.com/kmonsoor/str2bool',
packages=['str2bool'],
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
'Topic :: Text Processing',
],
install_requires=[],
# entry_points={},
)