-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
61 lines (54 loc) · 2.44 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# from traits.etsconfig.etsconfig import ETSConfig
# ETSConfig.toolkit = 'qt4'
# required to fix atexit bug with travis ci
# import multiprocessing
# prevent pycharm from remove multiprocessing during import optimization
# multiprocessing
import os
from setuptools import setup
os.environ['TRAVIS_CI'] = 'True'
setup(name='pychron',
version='16.7',
setup_requires=['nose>=1.0'],
entry_points={'enthought_app_metadata': ['example_app = eam.info:info']},
py_modules=['pychron.pychron_constants',
'pychron.paths',
'pychron.processing.plateau',
'pychron.processing.ratio',
'pychron.core.ui.__init__',
'pychron.core.test_helpers',
'pychron.core.filtering',
'pychron.core.spell_correct',
'pychron.experiment.automated_run.spec',
'pychron.experiment.utilities.repository_identifier',
'pychron.experiment.utilities.identifier',
'pychron.experiment.utilities.position_regex',
'pychron.experiment.utilities.frequency_generator',
'pychron.experiment.utilities.aliquot_numbering',
'pychron.experiment.duration_tracker',
'pychron.core.geometry.affine'
],
package_data={'pychron.pyscripts.tests': ['data/*.yaml', 'data/*.py'],
'pychron.entry.tests': ['data/*.xls', 'data/*.db'],
'pychron.processing.tests': ['data/*.db'],
'pychron.stage.tests': ['data/*.txt']},
packages=['pychron.core.regression',
'pychron.core.stats',
'pychron.core.helpers',
'pychron.external_pipette',
'pychron.experiment.conditional',
'pychron.pyscripts',
'pychron.stage.maps',
'pychron.canvas.canvas2D.scene.primitives',
# test packages
'pychron.canvas.canvas2D.tests',
'pychron.stage.tests',
'pychron.core.tests',
'pychron.core.stats.tests',
'pychron.core.regression.tests',
'pychron.processing.tests',
'pychron.external_pipette.tests',
'pychron.experiment.tests',
'pychron.pyscripts.tests',
'pychron.entry.tests'],
test_suite='pychron.test_suite.suite')