-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
30 lines (28 loc) · 1.11 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
#!/usr/bin/env python
# Read module version from init file
with open('dwdatareader/__init__.py') as f:
for line in f:
if line.startswith('__version__'):
exec(line)
from distutils.core import setup
setup(name='dwdatareader',
version=__version__,
description='Python module to interact with Dewesoft DWDataReaderLib shared library',
long_description=open('README.rst').read(),
author='Carl Osterwisch',
author_email='[email protected]',
url='https://github.com/costerwi/dwdatareader/',
download_url='https://github.com/costerwi/dwdatareader/tarball/master',
license='MIT',
packages=['dwdatareader'],
package_data={'dwdatareader': ['DW*.dll', 'DW*.so']},
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Development Status :: 4 - Beta",
],
)