-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.34 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.34 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
"""Set up file for NEW_REPO package."""
from pathlib import Path
from setuptools import find_packages, setup
PROJECT_DIR = Path(__file__).parent.resolve()
README_FILE = PROJECT_DIR / "README.md"
LONG_DESCR = README_FILE.read_text(encoding="utf-8")
VERSION = (PROJECT_DIR / "NEW_REPO" / "VERSION").read_text().strip()
GITHUB_URL = "https://github.com/CellProfiling/NEW_REPO"
DOWNLOAD_URL = f"{GITHUB_URL}/archive/master.zip"
setup(
name="NEW_REPO",
version=VERSION,
description="Provide a package for NEW_REPO",
long_description=LONG_DESCR,
long_description_content_type="text/markdown",
author="AUTHOR_NAME",
author_email="AUTHOR_EMAIL",
url=GITHUB_URL,
download_url=DOWNLOAD_URL,
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
python_requires=">=3.6",
install_requires=[],
include_package_data=True,
license="Apache-2.0",
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
],
)