-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (45 loc) · 1.56 KB
/
setup.py
File metadata and controls
50 lines (45 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
import os
from importlib.machinery import SourceFileLoader
from setuptools import find_packages, setup
MODULE_NAME = "bugout"
module = SourceFileLoader(
MODULE_NAME, os.path.join(MODULE_NAME, "__init__.py")
).load_module()
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name=MODULE_NAME,
version=module.__version__,
author=module.__author__,
author_email=module.__email__,
license=module.__license__,
description=module.__description__,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bugout-dev/bugout-python",
platforms="all",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.6",
packages=find_packages(),
package_data={"bugout": ["py.typed"]},
zip_safe=False,
install_requires=["pydantic<=1.10.10", "requests"],
extras_require={
"dev": ["black", "mypy", "isort", "types-requests"],
"distribute": ["setuptools", "twine", "wheel"],
},
entry_points={
"console_scripts": ["{0}-py = {0}.__main__:main".format(MODULE_NAME)]
},
)