forked from all4innov/pyOCNI
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.23 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.23 KB
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
39
40
41
42
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='pyocni',
author='Houssem Medhioub',
author_email='houssem.medhioub@it-sudparis.eu',
version='0.1',
description='PyOCNI: A Python implementation of an extended OCCI with a JSON serialization',
long_description=read('README'),
url='http://www.example.com/pyocni',
platforms=['any'],
packages=['pyocni'],
#packages=find_packages(), #['pyocni'],
install_requires=[
'config',
'configobj',
'logging',
'ordereddict',
'jsonpickle',
'routes',
'webob',
'pesto',
'eventlet',
'sphinx',
'ZODB3'
#'pack>=0.97',
#'pack'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7'
]
)