From 5777648758fdecc08dbd6f332cbc57f2a811bef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enno=20Gr=C3=B6per?= Date: Tue, 22 Sep 2015 17:27:03 +0200 Subject: [PATCH 1/5] Original setup.py copied from python-seafile --- setup.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..dc2e575 --- /dev/null +++ b/setup.py @@ -0,0 +1,20 @@ +from setuptools import setup, find_packages + +__version__ = '0.1.1' + + +setup(name='seafileapi', + version=__version__, + license='BSD', + description='Client interface for Seafile Web API', + author='Shuai Lin', + author_email='linshuai2012@gmail.com', + url='http://seafile.com', + platforms=['Any'], + packages=find_packages(), + install_requires=['requests'], + classifiers=['Development Status :: 4 - Beta', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python'], + ) From 9c5df0fc44f702e94af0d5aceba7f68a1df48b19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enno=20Gr=C3=B6per?= Date: Tue, 22 Sep 2015 17:28:07 +0200 Subject: [PATCH 2/5] Adjusted setup.py --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index dc2e575..1ac109e 100644 --- a/setup.py +++ b/setup.py @@ -1,18 +1,17 @@ from setuptools import setup, find_packages -__version__ = '0.1.1' +__version__ = '4.4.0' -setup(name='seafileapi', +setup(name='seafobj', version=__version__, license='BSD', - description='Client interface for Seafile Web API', + description='python library for accessing seafile data model', author='Shuai Lin', author_email='linshuai2012@gmail.com', url='http://seafile.com', platforms=['Any'], packages=find_packages(), - install_requires=['requests'], classifiers=['Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', From 984ae8bae584013fa5ef58bc30ce6e76628a5c0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enno=20Gr=C3=B6per?= Date: Tue, 22 Sep 2015 17:30:23 +0200 Subject: [PATCH 3/5] Fixed indentation (to make my editor happy) --- setup.py | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/setup.py b/setup.py index 1ac109e..cfa4ea2 100644 --- a/setup.py +++ b/setup.py @@ -4,16 +4,15 @@ setup(name='seafobj', - version=__version__, - license='BSD', - description='python library for accessing seafile data model', - author='Shuai Lin', - author_email='linshuai2012@gmail.com', - url='http://seafile.com', - platforms=['Any'], - packages=find_packages(), - classifiers=['Development Status :: 4 - Beta', - 'License :: OSI Approved :: BSD License', - 'Operating System :: OS Independent', - 'Programming Language :: Python'], - ) + version=__version__, + license='BSD', + description='python library for accessing seafile data model', + author='Shuai Lin', + author_email='linshuai2012@gmail.com', + url='http://seafile.com', + platforms=['Any'], + packages=find_packages(), + classifiers=['Development Status :: 4 - Beta', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python']) From 70a995f4b7be7068c8c588b0375140b3da046e87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enno=20Gr=C3=B6per?= Date: Tue, 22 Sep 2015 22:03:54 +0200 Subject: [PATCH 4/5] setup.py: exclude test directory --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cfa4ea2..cf4681e 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ author_email='linshuai2012@gmail.com', url='http://seafile.com', platforms=['Any'], - packages=find_packages(), + packages=find_packages(exclude=["test.*", "test"]), classifiers=['Development Status :: 4 - Beta', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', From 88b634cb4598e1a008e5b5199c510e95b325f6bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enno=20Gr=C3=B6per?= Date: Mon, 19 Mar 2018 14:05:16 +0100 Subject: [PATCH 5/5] Version bump to 6.2.10 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cf4681e..898cbe7 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -__version__ = '4.4.0' +__version__ = '6.2.10' setup(name='seafobj',