-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
42 lines (39 loc) · 1.2 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
# coding=utf-8
import io
import os
import setuptools
with io.open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="scooby",
author="Dieter Werthmüller, Bane Sullivan, Alex Kaszynski, and contributors",
author_email="[email protected]",
description="A Great Dane turned Python environment detective",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/banesullivan/scooby",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": [
"scooby=scooby.__main__:main",
],
},
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Natural Language :: English",
],
python_requires=">=3.8",
extras_require={
"cpu": ["psutil", "mkl"],
},
use_scm_version={
"root": ".",
"relative_to": __file__,
"write_to": os.path.join("scooby", "version.py"),
},
setup_requires=["setuptools_scm"],
package_data={"scooby": ["py.typed"]},
)