generated from imjoy-team/imjoy-python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.37 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
"""Set up the imjoy-utils package."""
import json
from pathlib import Path
from setuptools import find_packages, setup
DESCRIPTION = "Utility functions for ImJoy"
ROOT_DIR = Path(__file__).parent.resolve()
README_FILE = ROOT_DIR / "README.md"
LONG_DESCRIPTION = README_FILE.read_text(encoding="utf-8")
VERSION_FILE = ROOT_DIR / "imjoy_utils" / "VERSION"
VERSION = json.loads(VERSION_FILE.read_text())["version"]
REQUIRES = []
setup(
name="imjoy-utils",
version=VERSION,
url="https://github.com/imjoy-team/imjoy-utils",
author="ImJoy-Team",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
license="MIT",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
python_requires=">=3.7",
install_requires=REQUIRES,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet",
],
)