-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
64 lines (58 loc) · 1.4 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
56
57
58
59
60
61
62
63
64
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import find_packages, setup
version = "1.0.15"
if sys.argv[-1] == 'tag':
os.system("git tag -a %s -m 'version %s'" % (version, version))
os.system("git push --tags")
sys.exit()
requirements = [
'pandas',
'unidecode',
'pyyaml',
'orderedattrdict',
'typing',
'cookiecutter',
'Click',
'daff',
'tabulate',
'dask[dataframe]',
'tqdm',
'ruamel.yaml',
'graphviz',
'coloredlogs',
'pytz',
'requests[security]',
'gitpython',
'hy',
'attrs>=19.2.0',
'joblib',
'lxml',
'pycurl'
]
setup(
name='ddf_utils',
version=version,
description='Commonly used functions/utilities for DDF file model.',
long_description='README.md',
url='https://github.com/semio/ddf_utils',
author='Semio Zheng',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'res']),
install_requires=requirements,
entry_points={
'console_scripts': [
'ddf = ddf_utils.cli:ddf'
]
},
keywords=['etl', 'ddf', 'datasets', 'recipe'],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities"
]
)