Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
A
add-trailing-comma
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
add-trailing-comma
Commits
70fd2656
Kaydet (Commit)
70fd2656
authored
Şub 28, 2019
tarafından
Anthony Sottile
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Migrate setup.py to setup.cfg declarative metadata
Committed via
https://github.com/asottile/all-repos
üst
ce9e9da8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
24 deletions
+33
-24
setup.cfg
setup.cfg
+32
-0
setup.py
setup.py
+1
-24
No files found.
setup.cfg
Dosyayı görüntüle @
70fd2656
[metadata]
name = add_trailing_comma
version = 0.7.2
description = Automatically add trailing commas to calls and literals
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/asottile/add-trailing-comma
author = Anthony Sottile
author_email = asottile@umich.edu
license = MIT
license_file = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
py_modules = add_trailing_comma
install_requires = tokenize-rt>=2.1
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
[options.entry_points]
console_scripts =
add-trailing-comma = add_trailing_comma:main
[bdist_wheel]
universal = True
setup.py
Dosyayı görüntüle @
70fd2656
from
setuptools
import
setup
setup
(
name
=
'add_trailing_comma'
,
description
=
'Automatically add trailing commas to calls and literals'
,
url
=
'https://github.com/asottile/add-trailing-comma'
,
version
=
'0.7.2'
,
author
=
'Anthony Sottile'
,
author_email
=
'asottile@umich.edu'
,
classifiers
=
[
'License :: OSI Approved :: MIT License'
,
'Programming Language :: Python :: 2'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: Implementation :: CPython'
,
'Programming Language :: Python :: Implementation :: PyPy'
,
],
install_requires
=
[
'tokenize-rt>=2.1'
],
py_modules
=
[
'add_trailing_comma'
],
entry_points
=
{
'console_scripts'
:
[
'add-trailing-comma = add_trailing_comma:main'
],
},
)
setup
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment