-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 829 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 829 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
from setuptools import setup, Extension, find_packages
setup(
name = 'dquality',
author = 'Barbara Frosik',
author_email = 'bfrosik@aps.anl.gov',
description = 'Data Quality Tools.',
packages = find_packages(),
version = open('VERSION').read().strip(),
zip_safe = False,
url='http://dquality.readthedocs.org',
download_url='https://github.com/bfrosik/data-quality.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.7']
)