Skip to content

Commit 1bff956

Browse files
committed
Aspose.Cells Java for Python - Updated
1 parent 13b88d2 commit 1bff956

File tree

6 files changed

+47
-0
lines changed

6 files changed

+47
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Metadata-Version: 1.1
2+
Name: aspose-cells-java-for-python
3+
Version: 1.0
4+
Summary: Aspose.cells Java for Python is a project that demonstrates / provides the Aspose.Cells for Java API usage examples in Python.
5+
Home-page: https://github.com/asposecells/Aspose_Cells_Java/tree/master/Plugins/Aspose-Cells-Java-for-Python
6+
Author: Fahad Adeel
7+
Author-email: cells@aspose.com
8+
License: UNKNOWN
9+
Description: UNKNOWN
10+
Platform: UNKNOWN
11+
Classifier: Programming Language :: Python
12+
Classifier: Programming Language :: Python :: 2
13+
Classifier: License :: OSI Approved :: MIT License
14+
Classifier: Operating System :: OS Independent
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
setup.py
2+
WorkingWithFiles/__init__.py
3+
WorkingWithRowsAndColumns/__init__.py
4+
WorkingWithWorksheets/__init__.py
5+
aspose_cells_java_for_python.egg-info/PKG-INFO
6+
aspose_cells_java_for_python.egg-info/SOURCES.txt
7+
aspose_cells_java_for_python.egg-info/dependency_links.txt
8+
aspose_cells_java_for_python.egg-info/top_level.txt
9+
quickstart/__init__.py
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
WorkingWithWorksheets
2+
quickstart
3+
WorkingWithFiles
4+
WorkingWithRowsAndColumns
Binary file not shown.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
__author__ = 'fahadadeel'
2+
3+
from setuptools import setup, find_packages
4+
5+
setup(
6+
name = 'aspose-cells-java-for-python',
7+
packages = find_packages(),
8+
version = '1.0',
9+
description = 'Aspose.cells Java for Python is a project that demonstrates / provides the Aspose.Cells for Java API usage examples in Python.',
10+
author='Fahad Adeel',
11+
author_email='cells@aspose.com',
12+
url='https://github.com/asposecells/Aspose_Cells_Java/tree/master/Plugins/Aspose-Cells-Java-for-Python',
13+
classifiers=[
14+
'Programming Language :: Python',
15+
'Programming Language :: Python :: 2',
16+
'License :: OSI Approved :: MIT License',
17+
'Operating System :: OS Independent'
18+
]
19+
)

0 commit comments

Comments
 (0)