-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
38 lines (35 loc) · 1.17 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
from distutils.core import setup
with open('README') as file:
long_description = file.read()
setup(
name='Pizco',
version='0.1',
description='Python remote objects with ZMQ',
long_description=long_description,
author='Hernan E. Grecco',
author_email='[email protected]',
url='https://github.com/hgrecco/pizco',
packages=['pizco'],
package_data={},
extras_require = {
'pyzmq': ['pyzmq'],
},
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
])