-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (31 loc) · 1.35 KB
/
setup.py
File metadata and controls
executable file
·41 lines (31 loc) · 1.35 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
import setuptools
def readme():
with open("README.rst", "r") as f:
return f.read()
with open('dextract/__init__.py') as fid:
for line in fid:
if line.startswith('__version__'):
VERSION = line.strip().split()[-1][1:-1]
break
setuptools.setup(name='dextract',
version=VERSION,
url='http://github.com/csehdz/dextract',
author='cseHdz',
author_email='carlos.hdz@me.com',
description='Layered extractor of data',
long_description = readme(),
license='MIT',
packages=setuptools.find_packages(exclude=['contrib', 'docs',
'tests*']),
install_requires=['pandas>=0.9.1',
'numpy>=1.15.4',
'xlrd>=1.2.0',
'pyexcel>=0.5.10',
'pyexcel-xls>=0.5.8',
'pyexcel-xlsx>=0.5.7',
'statistics>=1.0.3.5'],
python_requires='>=3',
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'])