-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·33 lines (32 loc) · 1.16 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='tomosaic',
packages=find_packages(exclude=['test*']),
version=open('VERSION').read().strip(),
include_package_data=True,
ext_modules=[],
zip_safe=False,
author='Rafael Vescovi',
author_email='[email protected]',
description='Mosaic Tomographic Reconstruction in Python.',
keywords=['mosaic tomography', 'panorama', 'imaging'],
url='http://tomosaic.readthedocs.org',
download_url='http://github.com/tomosaic/tomosaic.git',
license='BSD-3',
platforms='Any',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: C']
)