-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 841 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='wacky_beer',
url='https://github.com/alejandroxag/wacky_beer/',
author='Team Wacky',
author_email='',
# Needed to actually package something
packages=['wacky_beer'],
# Needed for dependencies
install_requires=['requests', 'bs4', 'pandas'],
# *strongly* suggested for sharing
version='0.1.0',
# The license can be anything you like
license='MIT',
description='Group Project for the Data Focused Python Course. Beer information retrieval application.',
include_package_data=True,
package_data={'': ['data/beerstyles.csv', 'data/beer_merged_data.csv']},
# We will also need a readme eventually (there will be a warning)
# long_description=open('README.txt').read(),
)