Skip to content

Commit 1f79edc

Browse files
committed
Update license
1 parent f952572 commit 1f79edc

1 file changed

Lines changed: 22 additions & 22 deletions

File tree

setup.py

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Set up the Python API for Dingz devices."""
1+
"""Set up the Python API for dingz devices."""
22
import os
33

44
import sys
@@ -7,36 +7,36 @@
77

88
here = os.path.abspath(os.path.dirname(__file__))
99

10-
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme:
10+
with open(os.path.join(here, "README.rst"), encoding="utf-8") as readme:
1111
long_description = readme.read()
1212

13-
if sys.argv[-1] == 'publish':
14-
os.system('python3 setup.py sdist upload')
13+
if sys.argv[-1] == "publish":
14+
os.system("python3 setup.py sdist upload")
1515
sys.exit()
1616

1717
setup(
18-
name='python-dingz',
19-
version='0.0.1',
20-
description='Python API for interacting with Dingz devices',
18+
name="python-dingz",
19+
version="0.0.1",
20+
description="Python API for interacting with Dingz devices",
2121
long_description=long_description,
22-
url='https://github.com/fabaff/python-dingz',
23-
author='Fabian Affolter',
24-
author_email='fabian@affolter-engineering.ch',
25-
license='MIT',
26-
install_requires=['aiohttp', 'async_timeout'],
22+
url="https://github.com/fabaff/python-dingz",
23+
author="Fabian Affolter",
24+
author_email="fabian@affolter-engineering.ch",
25+
license="Apache License 2.0",
26+
install_requires=["aiohttp", "async_timeout"],
2727
packages=find_packages(),
2828
zip_safe=True,
2929
include_package_data=True,
3030
classifiers=[
31-
'Development Status :: 3 - Alpha',
32-
'Environment :: Console',
33-
'Intended Audience :: Developers',
34-
'License :: OSI Approved :: MIT License',
35-
'Operating System :: MacOS :: MacOS X',
36-
'Operating System :: Microsoft :: Windows',
37-
'Operating System :: POSIX',
38-
'Programming Language :: Python :: 3.7',
39-
'Programming Language :: Python :: 3.8',
40-
'Topic :: Utilities',
31+
"Development Status :: 3 - Alpha",
32+
"Environment :: Console",
33+
"Intended Audience :: Developers",
34+
"License :: OSI Approved :: Apache Software License",
35+
"Operating System :: MacOS :: MacOS X",
36+
"Operating System :: Microsoft :: Windows",
37+
"Operating System :: POSIX",
38+
"Programming Language :: Python :: 3.7",
39+
"Programming Language :: Python :: 3.8",
40+
"Topic :: Utilities",
4141
],
4242
)

0 commit comments

Comments
 (0)