-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.9 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
44
45
46
47
48
49
from setuptools import setup, find_packages
with open('README.rst', 'r') as fp:
long_description = fp.read()
with open('requirements-ipython.txt', 'r') as fp:
requirements_ipython = fp.read().splitlines()
with open('requirements-xmljson.txt', 'r') as fp:
requirements_xmljson = fp.read().splitlines()
setup(
name='input-helper',
version='0.1.53',
description='Helpers for parsing user input, generating menus, transforming data, making comparisons, flexible argument acceptance (string to list/set), regex matching, and more',
long_description=long_description,
author='Ken',
author_email='kenjyco@gmail.com',
license='MIT',
url='https://github.com/kenjyco/input-helper',
download_url='https://github.com/kenjyco/input-helper/tarball/v0.1.53',
packages=find_packages(),
extras_require={
'ipython': requirements_ipython,
'xmljson': requirements_xmljson,
'full': requirements_ipython + requirements_xmljson,
},
# setup_requires=['pytest-runner'],
# tests_require=['pytest'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: IPython',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Shells',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Markup :: XML',
'Topic :: Utilities',
],
keywords=['input', 'user input', 'regex', 'matching', 'json', 'selection', 'menus', 'filtering', 'conversions', 'transformations', 'comparisons', 'cli', 'command-line', 'helper', 'kenjyco']
)