File tree 4 files changed +25
-6
lines changed 4 files changed +25
-6
lines changed Original file line number Diff line number Diff line change 22
22
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
23
# SOFTWARE.
24
24
25
+ import zerorpc
26
+
27
+ try :
28
+ from setuptools import setup
29
+ except ImportError :
30
+ from distutils .core import setup
25
31
26
- from setuptools import setup
27
32
28
33
setup (
29
34
name = 'zerorpc' ,
30
- version = '0.1.0' ,
31
- author = 'dotCloud inc. <[email protected] >' ,
32
- package_dir = {'zerorpc' : '.' },
35
+ version = zerorpc .__version__ ,
36
+ description = 'zerorpc is a flexible RPC based on zeromq.' ,
37
+ author = zerorpc .__author__ ,
38
+ url = 'https://github.com/dotcloud/zerorpc-python' ,
33
39
packages = ['zerorpc' ],
34
40
install_requires = [
35
41
'argparse' ,
40
46
zip_safe = False ,
41
47
scripts = [
42
48
'bin/zerorpc-client'
43
- ]
44
- )
49
+ ],
50
+ license = 'MIT' ,
51
+ classifiers = (
52
+ 'Development Status :: 5 - Production/Stable' ,
53
+ 'Intended Audience :: Developers' ,
54
+ 'Natural Language :: English' ,
55
+ 'License :: OSI Approved :: MIT License' ,
56
+ 'Programming Language :: Python' ,
57
+ ),
58
+ )
Original file line number Diff line number Diff line change 22
22
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
23
# SOFTWARE.
24
24
25
+ __title__ = 'zerorpc'
26
+ __version__ = '0.1.0'
27
+ __author__ = 'dotCloud, Inc.'
28
+ __license__ = 'MIT'
29
+ __copyright__ = 'Copyright 2012 dotCloud, Inc.'
25
30
26
31
from gevent_zerorpc import *
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments