-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (43 loc) · 1.42 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
from setuptools import setup, find_packages
import codecs
import os
VERSION = '0.0.7'
DESCRIPTION = 'Functions for strings and lists'
LONG_DESCRIPTION = '''
String:
-NEW-
Added list_to_str(list) function
Fixed module not importing bug
A package that has several functions to work with strings and English words.
Functions-
plural-Converts any word to plural form.
e.g. plural("python")-"pythons"
join: joins two words e.g. 'pyt','hon'-'python'
add: Like the join() functions but can join word after the letter at the specified position
e.g. add("bore",1,"ef")-'before'
reverse: Reverses a string
e.g. reverse("python")-"nohtyp"
Lists:
list_to_str: Convert a list into a string e.g. ['p','y','t','h','o','n']-'python'
More functions coming soon!
'''
# Setting up
setup(
name="stringf",
version=VERSION,
author="Mathdallas_code(Jaiwant Morampudi)",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[],
keywords=['python','string','English','words','functions'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)