-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (37 loc) · 1.11 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
import os
from setuptools import setup
from sqlitecollections import (
__author__,
__description__,
__email__,
__package_name__,
__version__,
)
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"), "r") as fin:
__long_description__ = fin.read()
setup(
name=__package_name__,
version=__version__,
author=__author__,
author_email=__email__,
license="MIT",
url="https://github.com/osoken/sqlitecollections",
description=__description__,
long_description=__long_description__,
long_description_content_type="text/markdown",
packages=[__package_name__],
package_data={__package_name__: ["py.typed"]},
project_urls={'Documentation': "https://osoken.github.io/sqlitecollections/"},
install_requires=[],
extras_require={
"dev": ["flake8", "pytest", "black", "mypy==0.931", "tox", "isort"],
"docs": [
"mkdocs",
"mkdocs-material",
"markdown-include",
"mkdocs-include-markdown-plugin",
"mkdocs-macros-plugin",
"memory_profiler",
],
},
)