-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 981 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
from setuptools import setup, find_packages
from ssd1306_oled import __version__ as VERSION
requirements = [
'pillow>=7.2.0',
]
test_requirements = [
]
setup(
name = 'ssd1306-oled',
version = VERSION,
description = 'ssd1306 package.',
author = "leeyunjai",
author_email = '[email protected]',
url = 'https://github.com/leeyunjai/ssd1306-oled',
packages = find_packages(),
install_requires = requirements,
keywords = 'ssd1306-oled',
classifiers = [
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
test_suite = 'tests',
tests_require = test_requirements
)