forked from CrescentApricot/lz4unipy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 670 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 670 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
li = f.read()
setup(
name='lz4unipy',
version='1.0.1',
description='unity3d compatible lz4 pack/unpack library working on Python3.',
long_description=readme,
author='Cryptomelone',
author_email='cryptomelone@users.noreply.github.com',
license=li,
url='https://github.com/Cryptomelone/lz4unipy',
packages=find_packages(exclude=('tests',)),
install_requires=["lz4"],
entry_points={
'console_scripts': [
'lz4unipy = lz4unipy.cmd:main',
],
}
)