-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 726 Bytes
/
setup.py
File metadata and controls
32 lines (26 loc) · 726 Bytes
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
'''
Created on 4 Mar 2017
@author: Robert Putt
'''
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
import os
base_name='this_is_scraper'
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name=base_name,
version='0.1',
author=u'Robert Putt',
include_package_data = True,
packages=find_packages(), # include all packages under this directory
description='to update',
long_description="",
zip_safe=False,
# Adds dependencies
install_requires = ['bs4',
'sqlalchemy',
'pymysql',
'flask']
)