-
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) · 811 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 811 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 distutils.core import setup
from setuptools import find_packages
with open("README.md", "r",encoding="utf-8") as f:
long_description = f.read()
setup(
name='pyws2812', # 包名
version='0.1.1', # 版本号
description='A small example package',
long_description=long_description,
author='xf_zhan',
author_email='zxf9972009@qq.com',
url='https://github.com/phoenixsfly/pyWS2812',
install_requires=['pyserial'],
license='MIT License',
packages=find_packages(),
platforms=["all"],
classifiers=[
'Intended Audience :: Developers', 'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)', 'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'
],
)