-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
39 lines (34 loc) · 913 Bytes
/
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
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="jlcparts",
version="0.1.0",
author="Jan Mrázek",
author_email="[email protected]",
description="Better view of JLC PCB parts",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/RoboticsBrno/JLCPCB-Parts",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"requests",
"click",
"lxml"
],
setup_requires=[
],
zip_safe=False,
include_package_data=True,
entry_points = {
"console_scripts": [
"jlcparts=jlcparts.ui:cli"
],
}
)