-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 710 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='Future_Analyser',
url='https://github.com/LuisSousaSilva/Future_Analyser',
author='John Ladan',
author_email='jladan@uwaterloo.ca',
# Needed to actually package something
packages=['Future_Analyser'],
# Needed for dependencies
install_requires=['numpy'],
# *strongly* suggested for sharing
version='0.2',
# The license can be anything you like
license='MIT',
description='An example of a python package from pre-existing code',
# We will also need a readme eventually (there will be a warning)
# long_description=open('README.txt').read(),
)