-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
65 lines (53 loc) · 2.16 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
58
59
60
61
62
63
import os
from setuptools import setup, find_packages
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='ConcurrentPandas',
version='0.1.2',
description='Download data using pandas with multi-threading and multi-processing.',
long_description=(read('README.md') + '\n\n' +
read('AUTHORS.rst')) + '\n\n',
url='/~https://github.com/briwilcox/Concurrent-Pandas',
license='Apache Software License',
author='Brian Wilcox',
py_modules=['concurrentpandas'],
include_package_data=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Financial and Insurance Industry',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
],
packages = find_packages(),
scripts = ['concurrentpandas.py', 'benchmark.py', 'LICENSE', 'README.md', 'AUTHORS.rst'],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = [
'Quandl',
'pandas>=0.16.0',
'BeautifulSoup4'
],
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst', 'LICENSE', 'README.md'],
},
# metadata for upload to PyPI
keywords = "Panda, Pandas, DataFrame, Data Frame, Analysis, ",
)