-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (28 loc) · 1.17 KB
/
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
32
33
34
35
36
37
38
39
40
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(name='radio_code_calculator',
version='1.1.6',
description='Radio Code Calculator is an online service along with Web API and SDK for generating car radio unlock codes for popular vehicle brands.',
long_description=long_description,
long_description_content_type="text/markdown",
keywords="radio code navigation calculator generator vehicle car automotive radiocode radiocodes api",
url='https://www.pelock.com/products/radio-code-calculator',
author='Bartosz Wójcik',
author_email='[email protected]',
license='Apache-2.0',
packages=['radio_code_calculator'],
install_requires=[
'requests',
],
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Security",
"Topic :: Multimedia :: Sound/Audio",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3"
],
)