-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (47 loc) · 1.49 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
43
44
45
46
47
48
49
from os import path
import setuptools as st
long_description: str
with open(path.join(path.abspath(path.dirname(__file__)), "README.md")) as file:
long_description = file.read()
st.setup(
version="1.0.1",
name="damsenviet.kle",
description="A Python library for interacting with KLE data structures and files.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DamSenViet/kle-py",
project_urls={
"Source": "https://github.com/DamSenViet/kle-py",
"Documentation": "https://damsenviet.github.io/kle-py/",
},
author="DamSenViet",
license="MIT",
namespace_packages=["damsenviet"],
packages=st.find_packages(),
include_package_data=True,
package_data={"": ["kle-json/v1/*"]},
install_requires=[
"jsonschema>=3.2.0,<4",
],
extras_require={
"dev": [
# test dependencies
"matplotlib>=3.1.2,<4",
"pytest>=6.1.2,<7",
# formatting
"black>=20.8b1,<21",
# docs
"sphinx>=3.3.1,<4",
"pydata-sphinx-theme>=0.4.1,<1",
"sphinx-autodoc-typehints>=1.11.1,<2",
],
},
python_requires=">=3.7",
keywords="keyboard layout editor serial",
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)