[Pkg-owncloud-commits] [python-owncloud] 59/96: Creating a better setup.py
Sandro Knauß
hefee-guest at moszumanska.debian.org
Fri Nov 22 01:28:27 UTC 2013
This is an automated email from the git hooks/post-receive script.
hefee-guest pushed a commit to branch master
in repository python-owncloud.
commit a9c01fd736aac86cef29ea45a6063e0a83b8e20d
Author: hefee <hefee at netzguerilla.net>
Date: Thu Mar 28 12:29:01 2013 +0100
Creating a better setup.py
* correcting indent
* add classifier, license, url
---
setup.py | 34 +++++++++++++++++++++++++++-------
1 file changed, 27 insertions(+), 7 deletions(-)
diff --git a/setup.py b/setup.py
index 6165ab0..e16f7da 100644
--- a/setup.py
+++ b/setup.py
@@ -1,17 +1,37 @@
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
-import version as ver
+import csync.version as ver
setup(
- name = "pyOwnCloud",
- version = ver.version.asFloat,
- packages = find_packages(),
+ name = "pyOwnCloud",
+ version = ver.version.asFloat,
+ packages = find_packages(),
package_data = {
'csync': [ 'version.dat'],
},
entry_points = {
'console_scripts': [
- 'csync = csync.csync:main',
- ],
- }
+ 'csync = csync.csync:main',
+ ],
+ },
+ extras_require = {
+ 'keyring': ["keyring"],
+ },
+ author = 'pyOwnCloud Team',
+ author_email = 'pyowncloud at lists.cknow.org',
+ license = 'GPLv2',
+ url = "https://github.com/csawyerYumaed/pyOwnCloud",
+ description = 'ownCloud CLI client- connect your ownCloud with python.',
+ long_description = open('README.md').read(),
+ classifiers = [
+ "Development Status :: 3 - Alpha",
+ "Environment :: Console",
+ "Topic :: Communications :: File Sharing",
+ "Intended Audience :: End Users/Desktop",
+ "Programming Language :: Python",
+ "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
+ ]
+
)
+
+# vim: noet:ts=4:sw=4:sts=4
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/python-owncloud.git
More information about the Pkg-owncloud-commits
mailing list