File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ but this library is compatible only with Python 3.
250
250
.. _package repository : pypi _
251
251
.. _pypi : https://pypi.python.org/pypi
252
252
.. _latest version of this package : pypi-python-ev3dev _
253
- .. _pypi-python-ev3dev : https://pypi.python.org/pypi/python-ev3dev
253
+ .. _pypi-python-ev3dev : https://pypi.python.org/pypi/python-ev3dev2
254
254
.. _ev3dev Visual Studio Code extension : https://github.com/ev3dev/vscode-ev3dev-browser
255
255
.. _Python + VSCode introduction tutorial : https://github.com/ev3dev/vscode-hello-python
256
256
.. _nano : http://www.ev3dev.org/docs/tutorials/nano-cheat-sheet/
Original file line number Diff line number Diff line change 1
1
[sdist_dsc]
2
- package: python-ev3dev
2
+ package: python-ev3dev2
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
from git_version import git_version
3
+ from os import path
3
4
5
+ this_directory = path .abspath (path .dirname (__file__ ))
6
+ with open (path .join (this_directory , 'README.rst' ), encoding = 'utf-8' ) as f :
7
+ long_description = f .read ()
4
8
5
9
setup (
6
10
name = 'python-ev3dev2' ,
11
15
license = 'MIT' ,
12
16
url = 'https://github.com/ev3dev/ev3dev-lang-python' ,
13
17
include_package_data = True ,
18
+ long_description = long_description ,
19
+ long_description_content_type = 'text/x-rst' ,
14
20
packages = ['ev3dev2' ,
15
21
'ev3dev2.fonts' ,
16
22
'ev3dev2.sensor' ,
You can’t perform that action at this time.
0 commit comments