-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (27 loc) · 963 Bytes
/
setup.py
File metadata and controls
39 lines (27 loc) · 963 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
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup
setup(
name = 'FoundryDataBrowser',
version = '190903.1',
description = 'Data Browser for Foundry microscope data files',
#long_description =open('README.md', 'r').read(),
# Author details
author='Edward S. Barnard',
author_email='esbarnard@lbl.gov',
# Choose your license
license='BSD',
url='http://www.scopefoundry.org/',
package_dir={'FoundryDataBrowser': '.'},
packages=['FoundryDataBrowser', 'FoundryDataBrowser.viewers',],
#packages=find_packages('.', exclude=['contrib', 'docs', 'tests']),
#include_package_data=True,
package_data={
'':["*.ui"], # include QT ui files
},
#scripts=['bin/funniest-joke'],
entry_points = {
'console_scripts': ['FoundryDataBrowser=FoundryDataBrowser.foundry_data_browser:main'],
},
install_requires=[
'ScopeFoundry',
],
)