-
Notifications
You must be signed in to change notification settings - Fork 79
/
setup.py
42 lines (33 loc) · 1.19 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
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
install_requires = []
setup(
name = "bubbles",
version = '0.2',
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=install_requires,
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst'],
},
scripts=['bin/bubble'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Scientific/Engineering',
'Topic :: Utilities'
],
test_suite="tests",
# metadata for upload to PyPI
author="Stefan Urbanek",
author_email="[email protected]",
description="Virtual Data Object framework for data processing (ETL) and quality monitoring",
license="MIT",
keywords="data analysis quality datamining",
url="http://bubbles.databrewery.org"
)