-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (21 loc) · 941 Bytes
/
setup.py
File metadata and controls
27 lines (21 loc) · 941 Bytes
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
__version__ = '3.13.1' # Keep this on the first line
# We will now match the first two digits to the spinmob version against
# which this is tested, and increment the last digit as we make changes.
from setuptools import setup
setup(
name = 'McPhysics',
version = __version__,
description = 'Useful tools for the McGill Undergraduate Physics Labs',
author = 'Jack Sankey',
author_email = 'jack.sankey@gmail.com',
url = 'https://github.com/sankeylab/mcphysics',
# 1. Manually define the packages again since find_packages() failed
# due to the root-level (flat) structure.
packages = ['mcphysics', 'mcphysics.instruments', 'mcphysics.experiments'],
# 2. Map the package name to the current directory ('.')
package_dir = {'mcphysics': '.'},
include_package_data = True,
install_requires = [
'imageio',
]
)