-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (44 loc) · 1.41 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
"""
Hyckle
--------------
A memory-efficient warpper of pickle with local IO and better compression.
"""
import re
from setuptools import setup
with open('hyckle.py', 'rb') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
f.read().decode(), re.MULTILINE).group(1)
setup(
name='hyckle',
version=version,
url='https://github.com/zylo117/Hyckle/',
license='GPL-3.0',
author='zylo117',
author_email='zylo117@hotmail.com',
description='A memory-efficient warpper of pickle with local IO and better compression.',
long_description=__doc__,
py_modules=['hyckle'],
zip_safe=False,
include_package_data=True,
platforms='any',
extras_requires={
'fast': [
'zstd>=1.4.5'
]
},
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Database',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)