-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
31 lines (28 loc) · 937 Bytes
/
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
import io
from setuptools import setup
versionfile = 'ijroi/version.py'
exec(compile(open(versionfile, 'rb').read(), versionfile, 'exec'))
with io.open("README.rst", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name='ijroi',
version=__version__,
url='https://github.com/tdsmith/ijroi',
license='MIT',
author='Tim D. Smith',
author_email='[email protected]',
description='Reads ImageJ ROIs.',
long_description=long_description,
packages=['ijroi', 'ijroi.tests'],
package_data={'ijroi.tests': ['fixtures/*']},
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
install_requires=['numpy'],
)