forked from Arcadia-Science/readlif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·27 lines (25 loc) · 847 Bytes
/
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
from setuptools import setup
from os import path
# The text of the README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
README = f.read()
# This call to setup() does all the work
setup(
name="readlif",
version="0.6.1",
description="Fast Leica LIF file reader written in python",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/nimne/readlif",
author="Nick Negretti",
author_email="[email protected]",
license="GPLv3",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
],
packages=["readlif"],
include_package_data=True,
install_requires=["Pillow>=4.2.0"]
)