forked from erictang000/stackbot
-
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) · 729 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 729 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, find_packages
setup(name='foundry_scope',
version='x.x.x',
description='ScopeFoundry',
# 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/',
# packages=['ScopeFoundry',
# 'ScopeFoundry.scanning',
# 'ScopeFoundry.examples',],
# package_dir={'ScopeFoundry': './ScopeFoundry'},
packages=find_packages('.', exclude=['contrib', 'docs', 'tests']),
# include_package_data=True,
package_data={'': ["*.ui"]}, # include QT ui files},
)