-
-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.22 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (46 loc) · 1.22 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
# -*- coding: utf-8 -*-
import setuptools
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="kikit",
python_requires='>=3.7',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Jan Mrázek",
author_email="email@honzamrazek.cz",
description="Automation for KiCAD boards",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yaqwsx/KiKit",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"numpy", # Required for MacOS
"shapely>=2.0.3",
"click>=7.1",
"markdown2>=2.4",
"pybars3>=0.9",
"solidpython>=1.1.2",
"commentjson>=0.9"
],
setup_requires=[
"versioneer"
],
extras_require={
"dev": ["pytest"],
},
zip_safe=False,
include_package_data=True,
entry_points = {
"console_scripts": [
"kikit=kikit.ui:cli",
"kikit-info=kikit.info:cli"
],
}
)