-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (26 loc) · 885 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
28
29
30
31
32
__version__ = '1.5.16' # Keep this on the first line
from distutils.core import setup
setup(name = 'McPhysics',
version = __version__,
description = 'Useful tools for the McGill Undergraduate Physics Labs',
author = 'Jack Sankey',
author_email = '[email protected]',
url = 'https://github.com/sankeylab/mcphysics',
packages = [
'mcphysics',
'mcphysics.instruments',
'mcphysics.experiments'],
package_dir = {
'mcphysics' : '.',
'instruments' : './instruments',
'experiments' : './experiments'},
package_data={
'' : [
'./setup.py',
'./plot_scripts/*/*',
'./tests/*',
'./tests/data/*'
],
},
include_package_data=True,
)