-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 911 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
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("..")
import sdist_upip
setup(
name="micropython-cryptomsg",
version="0.1.0",
description="A MicroPython module to encrypt and decrypt messages " \
+ "with AES CBC mode.",
long_description="https://github.com/jacklinquan/micropython-cryptomsg",
long_description_content_type="text/markdown",
url="https://github.com/jacklinquan/micropython-cryptomsg",
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=["cryptomsg"],
)