forked from jennirinker/code-for-the-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1.13 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
# -*- coding: utf-8 -*-
"""Setup file for mypack package
Developer install
-----------------
Run following command in Anaconda prompt/terminal:
pip install -e .
"""
from setuptools import setup
setup(name='mypack', # name of package on import
version='1.0', # package version
description='Demo package for teaching packaging', # brief description
url='https://github.com/jennirinker/code-for-the-world', # git repo url
author='Jenni Rinker', # author(s)
author_email='[email protected]', # email
license='MIT', # licensing
packages=['mypack', # main package
'mypack.utils'], # utils subdirectory (or use find)
install_requires=[ # dependencies
'matplotlib', # for plotting
'numpy', # for numerical calculations
'numpydoc', # numpy-style docstrings for sphinx
'pandas', # store airfoil data in dataframes
'pytest', # for testing
'pytest-cov', # for calculating coverage
'sphinx', # generating documentation
'sphinx_rtd_theme' # docs theme
],
zip_safe=True) # package can be installed from zip file