forked from duedil-ltd/python-lzo-indexer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.44 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
#!/usr/bin/env python3.6
import sys
from pathlib import Path
from setuptools import setup, find_packages
if not sys.version_info >= (3, 6):
raise RuntimeError('lzo_indexer requires at least python 3.6')
readme = Path('README.rst').read_text()
requirements = Path('requirements.txt').read_text().splitlines()
test_requirements = Path('requirements_dev.txt').read_text().splitlines()
setup(
author='Tom Arnfeld',
author_email='[email protected]',
maintainer='Andriy Kushnir (Orhideous)',
maintainer_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description='Library for indexing LZO compressed files',
install_requires=requirements,
license="Apache Software License",
long_description=readme,
include_package_data=True,
keywords=['lzo', 'archive', 'indexing'],
name='python3_lzo_indexer',
packages=find_packages(),
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/Orhideous/python3_lzo_indexer',
version='0.3.0',
zip_safe=False,
entry_points='''
[console_scripts]
lzo_indexer=lzo_indexer.cli:cli
''',
)