-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.18 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.18 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
from setuptools import find_packages, setup
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name="humbug",
version="0.3.2",
packages=find_packages(),
package_data={"humbug": ["py.typed"]},
install_requires=["requests", "dataclasses; python_version=='3.6'"],
extras_require={
"dev": [
"black",
"mypy",
"wheel",
"types-pkg_resources",
"types-requests",
"types-dataclasses",
"types-psutil",
],
"distribute": ["setuptools", "twine", "wheel"],
"profile": ["psutil", "GPUtil", "types-psutil"],
},
description="Humbug: Do you build developer tools? Humbug helps you know your users.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Bugout.dev",
author_email="engineering@bugout.dev",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
],
url="https://github.com/bugout-dev/humbug",
)