-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
executable file
·36 lines (30 loc) · 1000 Bytes
/
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
#!/usr/bin/env python
import os
import re
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
if os.path.isfile('MANIFEST'):
os.unlink('MANIFEST')
version = re.search('__version__ = "([^"]+)"',
open('ooop.py').read()).group(1)
setup(
name = 'ooop',
version = version,
description = 'OpenObject on Python, a library to connect with Open ERP.',
author = 'Pedro Gracia',
author_email = '[email protected]',
license = 'GPLv3+',
download_url = 'https://www.github.com/lasarux/ooop',
py_modules = ['ooop'],
#package_dir = {'ooop': 'src/'},
#packages = ['ooop'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)