|
11 | 11 | long_description = (here / 'README.md').read_text(encoding='utf-8') |
12 | 12 |
|
13 | 13 | # load elements of version.py |
14 | | -exec(open(here / 'be_upy_blink' / 'version.py').read()) |
| 14 | +exec(open(here / 'ds1307' / 'version.py').read()) |
15 | 15 |
|
16 | 16 | setup( |
17 | | - name='micropython-package-template', |
| 17 | + name='micropython-ds1307', |
18 | 18 | version=__version__, |
19 | | - description="MicroPython PyPi package template project with auto deploy", |
| 19 | + description=" MicroPython driver for DS1307 RTC ", |
20 | 20 | long_description=long_description, |
21 | 21 | long_description_content_type='text/markdown', |
22 | | - url='https://github.com/brainelectronics/micropython-package-template', |
| 22 | + url='https://github.com/brainelectronics/micropython-ds1307', |
23 | 23 | author='brainelectronics', |
24 | 24 | author_email='info@brainelectronics.de', |
25 | 25 | classifiers=[ |
|
28 | 28 | 'License :: OSI Approved :: MIT License', |
29 | 29 | 'Programming Language :: Python :: Implementation :: MicroPython', |
30 | 30 | ], |
31 | | - keywords='micropython, template', |
| 31 | + keywords='micropython, i2c, ds1307, driver', |
32 | 32 | project_urls={ |
33 | | - 'Bug Reports': 'https://github.com/brainelectronics/micropython-package-template/issues', |
34 | | - 'Source': 'https://github.com/brainelectronics/micropython-package-template', |
| 33 | + 'Bug Reports': 'https://github.com/brainelectronics/micropython-ds1307/issues', |
| 34 | + 'Source': 'https://github.com/brainelectronics/micropython-ds1307', |
35 | 35 | }, |
36 | 36 | license='MIT', |
37 | 37 | cmdclass={'sdist': sdist_upip.sdist}, |
38 | | - packages=['be_upy_blink'], |
| 38 | + packages=['ds1307'], |
39 | 39 | install_requires=[] |
40 | 40 | ) |
0 commit comments