Skip to content

Commit 3866cac

Browse files
author
Mahmoud Tarrasse
committed
after upload to pypi
1 parent 10e934d commit 3866cac

File tree

7 files changed

+176
-35
lines changed

7 files changed

+176
-35
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ wheels/
2525
.installed.cfg
2626
*.egg
2727

28+
.pypirc
29+
2830
# PyInstaller
2931
# Usually these files are written by a python script from a template
3032
# before PyInstaller builds the exe, so as to inject date/other infos into it.
@@ -99,3 +101,6 @@ ENV/
99101

100102
# mypy
101103
.mypy_cache/
104+
105+
106+

.idea/preferred-vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+137-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.pypirc

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[distutils]
2+
index-servers =
3+
pypi
4+
pypitest
5+
6+
[pypi]
7+
repository=https://pypi.python.org/pypi
8+
username=El-Tarrasse
9+
password=Mody5060
10+
11+
[pypitest]
12+
repository=https://testpypi.python.org/pypi
13+
username=El-Tarrasse
14+
password=Mody5060

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
A small python library for efficient string building and concatenation
44

55

6+
**Installation**
7+
you can install this repo py pip
8+
9+
pip install StringBuilder
10+
11+
612
**Introduction**
713

814
python have a small issue when it comes
@@ -45,5 +51,6 @@ to get the final string
4551

4652

4753

54+
pull requests are welcomed
4855

49-
56+
this is an alpha version (under testing)

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
from setuptools import setup
22

33
setup(name='StringBuilder',
4-
version='1.0.0',
4+
version='1.0.0a0',
55
description='library for efficient string building',
6-
url='',
6+
url='https://github.com/Tarrasse/string_builder',
77
author='Mahmoud El-Tarrasse',
88
author_email='[email protected]',
99
license='MIT',
10-
packages=['StringBuilder'])
10+
keywords=['python', 'string', 'appending', 'building'],
11+
packages=['StringBuilder'])

0 commit comments

Comments
 (0)