-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·55 lines (50 loc) · 2.1 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
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
import os
import uuid
from setuptools import setup, find_packages
def read(*paths):
with open(os.path.join(*paths), 'r') as f:
return f.read()
VERSION = read('datagristle/_version.py').split('=')[1].strip()[1:-1]
REQUIREMENTS = read('requirements.txt')
DESCRIPTION = 'A toolbox and library of ETL, data quality, and data analysis tools'
assert VERSION.count('.') == 2
setup(name='datagristle',
version=VERSION,
description=DESCRIPTION,
long_description=(read('README.rst') + '\n\n' + read('CHANGELOG.rst')),
long_description_content_type='text/markdown',
keywords="data analysis quality utility etl",
author='Ken Farmer',
author_email='[email protected]',
url='http://github.com/kenfar/DataGristle',
license='BSD',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Operating System :: POSIX',
'Topic :: Scientific/Engineering',
'Topic :: Database',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing',
'Topic :: Utilities'],
scripts=['scripts/gristle_converter',
'scripts/gristle_determinator',
'scripts/gristle_differ',
'scripts/gristle_dir_merger',
'scripts/gristle_file_converter',
'scripts/gristle_freaker',
'scripts/gristle_metadata',
'scripts/gristle_md_reporter',
'scripts/gristle_profiler',
'scripts/gristle_slicer',
'scripts/gristle_sorter',
'scripts/gristle_validator',
'scripts/gristle_viewer'],
install_requires=REQUIREMENTS,
packages=find_packages(),
)