-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 878 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
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("./sdist_upip")
import sdist_upip
setup(
name="micropython-microbmp",
version="0.1.0",
description="A small Python module for BMP image processing.",
long_description="https://github.com/jacklinquan/micropython-microbmp",
long_description_content_type="text/markdown",
url="https://github.com/jacklinquan/micropython-microbmp",
author="Quan Lin",
author_email="jacklinquan@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: Implementation :: MicroPython"
],
cmdclass={"sdist": sdist_upip.sdist},
py_modules=["microbmp"],
)