diff --git a/setup.py b/setup.py index c1e2b6566..dec463a4e 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="arrow", version=about["__version__"], - description="Better dates and times for Python", + description="Better dates & times for Python", long_description=readme, long_description_content_type="text/x-rst", url="https://arrow.readthedocs.io/en/latest/", @@ -23,8 +23,10 @@ packages=["arrow"], zip_safe=False, python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", - install_requires=["python-dateutil"], - extras_require={":python_version=='2.7'": ["backports.functools_lru_cache>=1.2.1"]}, + install_requires=[ + "python-dateutil", + "backports.functools_lru_cache>=1.2.1;python_version=='2.7'", + ], test_suite="tests", tests_require=["chai"], classifiers=[ @@ -40,7 +42,7 @@ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", ], - keywords="arrow date time datetime", + keywords="arrow date time datetime timestamp timezone", project_urls={ "Repository": "https://github.com/crsmithdev/arrow", "Bug Reports": "https://github.com/crsmithdev/arrow/issues",