-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (33 loc) · 1.01 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
from setuptools import setup, find_packages
setup(
name='sh-ec-scrapers',
setup_requires=['setuptools_scm'],
packages=find_packages(),
install_requires=[
'numpy==1.11.0',
'pandas==0.18.0',
'docopt==0.6.2',
'pyaml==15.6.3',
'requests',
'simplejson'],
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
extras_require={
'dev': ['ipdb==0.8.1',
'ipython==4.1.2',
'ipykernel']
},
scripts=[
],
include_package_data=True
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
# entry_points={
# 'console_scripts': [
# 'sample=sample:main',
# ],
# },
)