-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 852 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
import pathlib
from setuptools import find_packages, setup
HERE = pathlib.Path(__file__).parent
VERSION = '0.2'
PACKAGE_NAME = 'package'
AUTHOR = 'author'
AUTHOR_EMAIL = '[email protected]'
LICENSE = 'MIT License'
DESCRIPTION = 'driver for micropython '
# Read the contents of your README file for the long description
with open('README.md', 'r', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
# Add your required packages to INSTALL_REQUIRES list
INSTALL_REQUIRES = []
setup(
name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown', # Specify the type of content
author=AUTHOR,
author_email=AUTHOR_EMAIL,
install_requires=INSTALL_REQUIRES,
license=LICENSE,
packages=find_packages(),
include_package_data=True
)