forked from superfeedr/sfpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (23 loc) · 802 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·24 lines (23 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name = "sfpy",
version = "1.0",
description = "Another Python client for the SuperFeedr XMPP service",
author = 'didier deshommes',
author_email = 'dfdeshom@gmail.com',
packages=find_packages(exclude=['ez_setup']),
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
url = 'http://bitbucket.org/dfdeshom/sfpy/overview/'
)