-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (34 loc) · 1.07 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
import os
from setuptools import setup
import versioneer
setup(
name="anaconda-anon-usage",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="basic anonymous telemetry for conda",
license="BSD",
author="Michael C. Grant",
author_email="mgrant@anaconda.com",
url="https://github.com/Anaconda-Platform/anaconda-anon-usage",
packages=["anaconda_anon_usage"],
install_requires=["conda"],
keywords=["anaconda-anon-usage"],
entry_points=(
{
"conda": [
"anaconda-anon-usage-plugin = anaconda_anon_usage.plugin",
],
}
if os.environ.get("NEED_SCRIPTS") != "yes"
else {}
),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)