-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 758 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='logicaldoc',
version='0.0.1',
description='LogicalDoc API library',
url='https://github.com/OpenCode/logicaldoc',
author='Francesco Apruzzese',
author_email='cescoap@gmail.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
],
keywords='logicaldoc api',
license='AGPL',
packages=['logicaldoc'],
install_requires=[
'requests',
],
zip_safe=False)