-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (37 loc) · 953 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
37
38
39
40
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='exportable',
version='0.1.7',
packages=[
'exportable',
'exportable.exporters',
'exportable.exporters.tests'
],
package_data={
'*': ['LICENSE.txt', 'requirements.txt'],
},
url='https://github.com/amcat/exportable',
license='AGPL',
author='AmCAT Developers',
author_email='',
description='',
install_requires=[
"python-dateutil",
"pyexcel",
"pyexcel-io",
"pyexcel-ods3",
"pyexcel-xlsx",
"pyexcel-xls",
"typing"
],
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
]
)