forked from lfagundes/oosheet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 998 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
from setuptools import setup, find_packages
import os
setup(name = 'oosheet',
version = '1.2',
description = 'OpenOffice.org Spreadsheet scripting library',
long_description = open(os.path.join(os.path.dirname(__file__), "README")).read(),
author = "Luis Fagundes",
author_email = "[email protected]",
license = "The MIT License",
packages = find_packages(),
entry_points = {
'console_scripts': [
'oosheet-pack = oosheet:pack',
'oosheet-launch = oosheet:launch',
]
},
# Why isn't install_requires working?
#install_requires = ['uno'],
classifiers = [
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Office/Business :: Financial :: Spreadsheet',
],
url = 'http://oosheet.hacklab.com.br/',
)