|
23 | 23 |
|
24 | 24 | # Setup variables. Change as needed |
25 | 25 | NAME = "mapillary" |
26 | | -VERSION = "0.0.1" |
27 | | -AUTHOR = "Christopher Beddow, Omar Ali, Saif Ul Islam" |
28 | | -AUTHOR_EMAIL = "[email protected], [email protected], saifulislam84210@gmail.com" |
| 26 | +VERSION = "0.0.17" |
| 27 | +AUTHOR = "Christopher Beddow" |
| 28 | +AUTHOR_EMAIL = "[email protected].com" |
29 | 29 | LICENSE = "MIT" |
30 | | -PLATFORM = "any" |
| 30 | +PLATFORM = ["POSIX", "MacOS X", "Linux", "Windows"] |
31 | 31 | DESCRIPTION = ( |
32 | 32 | "A Python 3 library built on the Mapillary API v4 to facilitate retrieving and " |
33 | 33 | "working with Mapillary data" |
34 | 34 | ) |
35 | 35 | LONG_DESCRIPTION_CONTENT_TYPE = "text/markdown" |
36 | 36 | URL = "https://github.com/mapillary/mapillary-python-sdk" |
37 | | -REQUIRES_PYTHON = ">3.0" |
| 37 | +REQUIRES_PYTHON = ">=3.0" |
38 | 38 | HERE = os.path.abspath(os.path.dirname(__file__)) |
39 | 39 | REQUIREMENTS = [ |
40 | 40 | "mercantile", |
|
50 | 50 | "Intended Audience :: Science/Research", |
51 | 51 | "Topic :: Scientific/Engineering :: GIS", |
52 | 52 | "Topic :: Scientific/Engineering :: Information Analysis", |
| 53 | + "Natural Language :: English", |
53 | 54 | "Operating System :: OS Independent", |
| 55 | + "Operating System :: POSIX :: Linux", |
| 56 | + "Operating System :: Microsoft", |
| 57 | + "Operating System :: MacOS", |
| 58 | + "Operating System :: POSIX", |
54 | 59 | "License :: OSI Approved :: MIT License", |
55 | 60 | "Programming Language :: Python", |
56 | 61 | "Programming Language :: Python :: 3", |
|
61 | 66 | "Programming Language :: Python :: 3.9", |
62 | 67 | ] |
63 | 68 | PROJECT_URLS = { |
| 69 | + "Download": "https://pypi.org/project/mapillary/#files", |
| 70 | + "Release Notes": "https://github.com/mapillary/mapillary-python-sdk/releases", |
64 | 71 | "Bug Tracker": "https://github.com/mapillary/mapillary-python-sdk/issues", |
65 | | - # "Support Email": "[email protected]", |
| 72 | + "Source": "https://github.com/mapillary/mapillary-python-sdk", |
| 73 | + "Twitter": "https://twitter.com/mapillary", |
| 74 | + "Developer Resources": "https://www.mapillary.com/developer", |
66 | 75 | "Community Forum": "https://forum.mapillary.com/", |
67 | 76 | "Blog": "https://blog.mapillary.com/", |
68 | | - "Twitter": "https://twitter.com/mapillary", |
69 | 77 | "Facebook": "https://www.facebook.com/mapillary/", |
70 | 78 | "Website": "https://www.mapillary.com/", |
71 | 79 | } |
|
0 commit comments