forked from sipeed/kflash.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (49 loc) · 1.73 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
50
51
52
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from __future__ import division, print_function
from setuptools import setup, find_packages
setup(
name="kflash",
py_modules=["kflash"],
version="1.1.6",
description=("Kendryte UART ISP Utility - programming code to k210"),
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
author="https://github.com/vowstar/kflash.py/graphs/contributors",
author_email="[email protected]",
maintainer="Huang Rui",
maintainer_email="[email protected]",
license="MIT License",
packages=find_packages(),
platforms=["all"],
url="https://github.com/vowstar/kflash.py",
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Embedded Systems",
],
install_requires=[
"pyserial>=3.4",
"pyelftools>=0.25",
"enum34>=1.1.10; python_version < \"3.4.0\"",
],
entry_points={
"console_scripts": [
"kflash = kflash:main",
]
},
)