-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 848 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
31
32
33
34
35
36
37
38
39
# pylint: disable=missing-docstring
from setuptools import setup
long_description = """
Convert between programming naming conventions, and other less formal ones.
From cases supported:
camelCase (pascalCase),
CamelCase (PascalCase),
snake_case,
MACRO_CASE
To cases supported:
camelCase (pascalCase),
CamelCase (PascalCase),
snake_case,
MACRO_CASE
"""
setup(
name="case_converter",
version="1.0",
description="Convert between naming conventions",
long_description=long_description,
license="MIT",
packages=[],
author="Emil Lynegaard",
author_email="[email protected]",
keywords=[
"case",
"convert",
"naming",
"camelcase",
"snakecase",
"pascalcase",
"macrocase",
],
url="https://github.com/ecly/case_converter",
)