-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 796 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
import sdist_upip
setup(
name='deaweb',
version='1.0.3',
descrition='Lightweight asynchronous web-framework for Micropython',
url='https://github.com/deademo/deaweb',
author='Dmitry Khylia',
# classifiers=[
# 'Development Status :: 2 - Beta',
# 'Intended Audience :: Developers',
# 'Topic :: Software Development :: Build Tools',
# 'License :: OSI Approved :: MIT License',
# ],
keywords='micropython web framework webframework web-framework server',
packages=['deaweb'],
cmdclass={'sdist': sdist_upip.sdist},
# install_requires=['micropython-uasyncio'], # package has not setup script
# project_urls={
# 'Source': 'https://github.com/deademo/deaweb',
# }
)