-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 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
from setuptools import setup
# This setup.py file is based on:
# https://uoftcoders.github.io/studyGroup/lessons/python/packages/lesson/
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='bighist',
url='https://github.com/MichaelHoltonPrice/bighist',
author='Michael Holton Price',
author_email='MichaelHoltonPrice@gmail.com',
# Needed to actually package something
packages=['bighist'],
# Needed for dependencies
install_requires=['numpy', 'pandas'],
# *strongly* suggested for sharing
version='0.1',
package_data={
#'bighist': ['bighist/data/*.csv', 'bighist/data/*.xlsx']
'bighist': ['data/*.csv', 'data/*.xlsx']
},
# The license can be anything you like
license='MIT', # TODO: will this do?
description='A Python package for working with Big History Data and doing\
Big History Analyses',
# We will also need a readme eventually (there will be a warning)
# long_description=open('README.txt').read(),
)