-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
59 lines (46 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
from setuptools import setup
setup(
name="humps",
packages=["humps", "tests"],
version="0.2.2",
author="Erik Huizinga",
author_email="huizinga.erik@gmail.com",
license='LGPL-3.0',
url="https://github.com/erikhuizinga/humps",
description="camelCase converter",
long_description=
"""*********
``humps``
*********
*Convert any string to camelCase.*
Description
===========
camelCase starts with a lower case alphabetic character, the rest of the string contains alphanumeric characters. Any character case in the input is ignored. Any spaces in the input capitalise the following character if alphabetic, except for the first character. Any non-alphanumeric characters are ignored.
Installation
============
Shell:
.. code-block:: sh
pip install humps
Python:
.. code-block:: python
from humps.camel import case
print(case('Hello, World!'))
# Output: helloWorld
""",
keywords=["camelcase", 'camel', 'case', "string", "conversion"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Text Editors",
"Topic :: Text Editors :: Word Processors",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Utilities",
],
)