|
1 | | -from setuptools import setup, find_packages |
| 1 | +from setuptools import setup |
2 | 2 |
|
3 | | -description = open("README.rst").read() |
4 | | -# Change links to stable documentation |
5 | | -description = description.replace("/latest/", "/stable/") |
6 | | - |
7 | | -setup( |
8 | | - name="canopen", |
9 | | - url="https://github.com/christiansandberg/canopen", |
10 | | - use_scm_version=True, |
11 | | - packages=find_packages(), |
12 | | - author="Christian Sandberg", |
13 | | - author_email="christiansandberg@me.com", |
14 | | - description="CANopen stack implementation", |
15 | | - keywords="CAN CANopen", |
16 | | - long_description=description, |
17 | | - license="MIT", |
18 | | - platforms=["any"], |
19 | | - classifiers=[ |
20 | | - "Development Status :: 5 - Production/Stable", |
21 | | - "License :: OSI Approved :: MIT License", |
22 | | - "Operating System :: OS Independent", |
23 | | - "Programming Language :: Python :: 3", |
24 | | - "Intended Audience :: Developers", |
25 | | - "Topic :: Scientific/Engineering" |
26 | | - ], |
27 | | - install_requires=["python-can>=3.0.0"], |
28 | | - extras_require={ |
29 | | - "db_export": ["canmatrix"] |
30 | | - }, |
31 | | - setup_requires=["setuptools_scm"], |
32 | | - include_package_data=True |
33 | | -) |
| 3 | +setup() |
0 commit comments