Skip to content

Commit c710439

Browse files
python 2.7 support
1 parent f98dcf5 commit c710439

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,5 @@ venv.bak/
101101
/site
102102

103103
# mypy
104-
.mypy_cache/
104+
.mypy_cache/
105+
.idea

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[aliases]
2+
test = pytest
3+
4+
[easy_install]
5+

setup.py

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
# Package meta-data.
1515
NAME = 'commitizen'
1616
DESCRIPTION = 'Python commitizen client tool.'
17-
URL = 'https://github.com/woile/commitizen'
18-
EMAIL = 'santiwilly@gmail.com'
19-
AUTHOR = 'Santiago Fraire'
17+
URL = 'https://github.com/ranshamay89/commitizen'
18+
EMAIL = 'ran@panorays.com'
19+
AUTHOR = 'Ran Shamay'
2020
REQUIRED = [
2121
'delegator.py', 'whaaaaat'
2222
]
@@ -58,9 +58,6 @@ def run(self):
5858
self.status('Building Source and Wheel (universal) distribution…')
5959
os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable))
6060

61-
self.status('Uploading the package to PyPi via Twine…')
62-
os.system('twine upload dist/*')
63-
6461
sys.exit()
6562

6663

@@ -87,9 +84,5 @@ def run(self):
8784
'Programming Language :: Python',
8885
'Programming Language :: Python :: 2.7',
8986
'Programming Language :: Python :: Implementation :: CPython'
90-
],
91-
# $ setup.py publish support.
92-
cmdclass={
93-
'upload': UploadCommand,
94-
},
87+
]
9588
)

0 commit comments

Comments
 (0)