-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 887 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 887 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = 'rootprocessing',
version = '1.1.10',
author = 'Keita DeCarlo',
author_email = 'kdecarlo@princeton.edu',
packages = find_packages(exclude=['test', 'Notebook_Code']),
include_package_data = True,
test_suite = 'test',
install_requires = [
'numpy',
'scipy',
'pillow',
],
dependency_links = [
],
description = 'Root Processing suite for images at the ORNL CG-1D beamline',
license = 'BSD',
keywords = 'tiff tif root processing',
url = 'https://github.com/kdecarlo/CG1D_rootprocessing',
classifiers = ['Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering :: Physics',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'],
)