-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (22 loc) · 892 Bytes
/
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
setup(name='bananas',
version='0.1',
# description='The funniest joke in the world',
# url='http://github.com/storborg/funniest',
# author='Flying Circus',
# author_email='[email protected]',
# license='MIT',
packages=['bananas'],
install_requires=[
'numpy==1.26.0'
# Add other dependencies here
]
# zip_safe=False
)
'''
Note for Tsz
the 'packages' key is used to list out all the modules and submodules you want to install. Instead of manually
putting in every module (python script) you want users to install when they perform a `import bananas`, many
people choose to use the `find_package()` from setup_tools to automatically identify all the modules.
More documentation can be found here: https://setuptools.pypa.io/en/latest/userguide/quickstart.html
'''