|
7 | 7 | about = {}
|
8 | 8 | exec((HERE / "overpy" / "__about__.py").read_text(), about)
|
9 | 9 |
|
10 |
| -long_description = (HERE / "README.rst").read_text() |
11 |
| - |
12 | 10 | setup(
|
13 | 11 | name=about["__title__"],
|
14 | 12 | version=about["__version__"],
|
15 | 13 |
|
16 | 14 | description=about["__summary__"],
|
17 |
| - long_description=long_description, |
18 | 15 | license=about["__license__"],
|
19 | 16 | url=about["__uri__"],
|
20 |
| - |
21 |
| - zip_safe=False, |
22 | 17 | author=about["__author__"],
|
23 |
| - classifiers=[ |
24 |
| - "Development Status :: 4 - Beta", |
25 |
| - "License :: OSI Approved :: MIT License", |
26 |
| - "Operating System :: OS Independent", |
27 |
| - "Programming Language :: Python", |
28 |
| - "Programming Language :: Python :: 3", |
29 |
| - "Programming Language :: Python :: 3.6", |
30 |
| - "Programming Language :: Python :: 3.7", |
31 |
| - "Programming Language :: Python :: 3.8", |
32 |
| - "Programming Language :: Python :: 3.9", |
33 |
| - "Programming Language :: Python :: Implementation :: CPython", |
34 |
| - "Programming Language :: Python :: Implementation :: PyPy" |
35 |
| - ], |
36 | 18 | keywords="OverPy Overpass OSM OpenStreetMap",
|
37 | 19 | install_requires=[],
|
38 | 20 | packages=find_packages(exclude=["*.tests", "*.tests.*", "tests"]),
|
39 |
| - include_package_data=True, |
40 | 21 | package_data={
|
41 | 22 | # "": ["README"],
|
42 | 23 | },
|
|
0 commit comments