-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (33 loc) · 1.21 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
setup(
name='scanscripts',
author='Mark Wolf, Doga Gursoy, Francesco De Carlo',
# packages=find_packages(),
packages=['aps_32id', 'aps_02bm', 'scanlib'],
version=open(os.path.join(os.path.dirname(__file__), 'VERSION')).read().strip(),
description = 'Control software for various X-ray imaging beamlines.',
install_requires = ("numpy", "pyepics", "h5py", 'tqdm', 'pytz'),
entry_points = {
'console_scripts': [
'energy-scan=aps_32id.run.energy_scan:main',
'tomo-fly-scan=aps_32id.run.tomo_fly_scan:main',
'tomo-step-scan=aps_32id.run.tomo_step_scan:main',
'move-energy=aps_32id.run.move_energy:main',
'monitor-shaker=aps_32id.run.monitor_shaker:main',
],
},
license='BSD-3',
platforms='Any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: BSD-3',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)