|
14 | 14 | install_requires = [
|
15 | 15 | 'requests',
|
16 | 16 | ]
|
17 |
| -test_requires = [ |
| 17 | +tests_require = [ |
18 | 18 | 'nose',
|
19 | 19 | 'coverage',
|
20 | 20 | 'mock',
|
|
23 | 23 | setup(
|
24 | 24 | name = 'elasticsearch',
|
25 | 25 | description = "Python client for Elasticsearch",
|
26 |
| - url = "https://github.com/elasticsearch/elasticsearch/", |
| 26 | + license="Apache License, Version 2.0", |
| 27 | + url = "https://github.com/elasticsearch/elasticsearch-py", |
27 | 28 | long_description = long_description,
|
28 | 29 | version = __versionstr__,
|
29 | 30 | author = "Honza Král",
|
30 | 31 | author_email = "[email protected]",
|
31 | 32 | packages = ['elasticsearch'],
|
32 | 33 | classifiers = [
|
33 | 34 | "Development Status :: 4 - Beta",
|
34 |
| - "Programming Language :: Python", |
| 35 | + "License :: OSI Approved :: Apache Software License", |
| 36 | + "Intended Audience :: Developers", |
35 | 37 | "Operating System :: OS Independent",
|
| 38 | + "Programming Language :: Python", |
| 39 | + "Programming Language :: Python :: 2", |
| 40 | + "Programming Language :: Python :: 3", |
| 41 | + "Programming Language :: Python :: Implementation :: CPython", |
| 42 | + "Programming Language :: Python :: Implementation :: PyPy", |
36 | 43 | ],
|
37 | 44 | install_requires=install_requires,
|
38 | 45 |
|
39 | 46 | test_suite='test_elasticsearch.run_tests.run_all',
|
40 |
| - test_requires=test_requires, |
| 47 | + tests_require=tests_require, |
41 | 48 | )
|
0 commit comments