-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (44 loc) · 1.13 KB
/
setup.py
File metadata and controls
47 lines (44 loc) · 1.13 KB
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
lempel ziv coding
===================
A file compactor
"""
from setuptools import setup, find_packages
install_requires = [
'bitarray>=0.8.1',
'ipdb>=0.9.0',
'optparse-pretty>=0.1.1',
'bintrees>=2.0.2',
'scipy>=0.17.0',
'numpy>=1.11.0',
]
setup(
name="lzv",
version='0.0.8',
author='Luiz Oliveira',
author_email='ziuloliveira@gmail.com',
url='https://github.com/Ziul/lzv/',
entry_points={
'console_scripts': [
'lzv = lzv:main',
# 'main-test = main:test',
]},
description='A program to compact/descompact a file',
long_description=__doc__,
license='GPLv3',
package_dir={'': 'src'},
packages=find_packages('src'),
zip_safe=False,
test_suite="tests.run.runtests",
install_requires=install_requires,
include_package_data=True,
classifiers=[
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3',
'Topic :: Utilities',
],
)