Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
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ç
LibreOffice
core
Commits
8af868e2
Kaydet (Commit)
8af868e2
authored
Haz 07, 2017
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
prepare publishing the libreoffice-connection python code
Change-Id: I730207465e185a0b942b5636cd7ba3bebe7856f5
üst
839fd821
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
0 deletions
+42
-0
Makefile
uitest/packaging/Makefile
+16
-0
README.rst
uitest/packaging/README.rst
+0
-0
setup.cfg
uitest/packaging/setup.cfg
+0
-0
setup.py
uitest/packaging/setup.py
+26
-0
No files found.
uitest/packaging/Makefile
0 → 100644
Dosyayı görüntüle @
8af868e2
all
:
@
echo
"Packaging the libreoffice-connection code"
@
mkdir
-p
libreoffice
@
cp
../libreoffice/connection.py libreoffice/.
@
touch
libreoffice/__init__.py
@
python3 setup.py sdist
clean
:
rm
-r
dist/
rm
-r
libreoffice_connection.egg-info/
rm
-r
libreoffice/
rm
-r
build/
publish
:
@
echo
"Uploading the release to pypi"
twine upload dist/
*
uitest/packaging/README.rst
0 → 100644
Dosyayı görüntüle @
8af868e2
uitest/packaging/setup.cfg
0 → 100644
Dosyayı görüntüle @
8af868e2
uitest/packaging/setup.py
0 → 100644
Dosyayı görüntüle @
8af868e2
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"libreoffice-connection"
,
version
=
"0.0.1"
,
description
=
"Connection code for LibreOffice's pyUNO"
,
long_description
=
""
,
url
=
"http://www.libreoffice.org"
,
author
=
"The LibreOffice developers"
,
author_email
=
"libreoffice@lists.freedesktop.org"
,
license
=
"MPL2"
,
classifiers
=
[
"Development Status :: 3 - Alpha"
,
"Intended Audience :: Developers"
,
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)"
,
"Programming Language :: Python :: 3.2"
,
"Programming Language :: Python :: 3.3"
,
"Programming Language :: Python :: 3.4"
,
"Programming Language :: Python :: 3.5"
,
"Programming Language :: Python :: 3.6"
,
"Topic :: Office/Business :: Office Suites"
,
"Topic :: Software Development :: Libraries"
,
],
keywords
=
"office automation"
,
packages
=
find_packages
(),
)
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