-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
57 lines (49 loc) · 1.75 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os
with open(os.path.abspath('README.md')) as readme_file:
readme = readme_file.read()
with open(os.path.abspath("requirements.txt")) as f:
requirements = [req.strip() for req in f.readlines()]
with open(os.path.abspath("requirements_dev.txt")) as f:
test_requirements = [req.strip() for req in f.readlines()]
with open('PYPI_LONG_DESCRIPTION.rst') as readme_file:
readme = readme_file.read()
setup(
name='xlseries',
version='0.2.6',
description="Python package to scrape time series data from excel files.",
long_description=readme,
author="Agustin Benassi",
author_email='[email protected]',
maintainer="Agustin Benassi",
maintainer_email='[email protected]',
url='https://github.com/abenassi/xlseries',
download_url='https://github.com/abenassi/xlseries/archive/0.2.6.tar.gz',
packages=[
'xlseries',
'xlseries.strategies',
'xlseries.strategies.clean',
'xlseries.strategies.discover',
'xlseries.strategies.get',
'xlseries.utils'
],
package_dir={'xlseries': 'xlseries'},
include_package_data=True,
install_requires=requirements,
license="GPLv3+",
zip_safe=False,
keywords="xlseries excel time series data opendata scraper",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Office/Business'
],
test_suite='nose.collector',
tests_require=test_requirements
)