|
28 | 28 | version=version, |
29 | 29 | download_url = 'https://github.com/nickmaccarthy/python-datemath/tarball/{0}'.format(version), |
30 | 30 |
|
31 | | - description='A python module to emulate the date math used in SOLR and Elasticsearch', |
32 | | - |
33 | | - long_description_content_type="text/markdown", |
34 | | - long_description=long_description_from_readme, |
35 | | - |
36 | | - |
37 | 31 | # The project's main homepage. |
38 | 32 | url='https://github.com/nickmaccarthy/python-datemath', |
39 | 33 |
|
40 | 34 |
|
41 | | - # Author details |
42 | | - author='Nick MacCarthy', |
43 | | - author_email='nickmaccarthy@gmail.com', |
44 | | - |
45 | | - # Choose your license |
46 | | - license='Apache-2.0', |
47 | | - |
48 | | - # See https://pypi.python.org/pypi?%3Aaction=list_classifiers |
49 | | - classifiers=[ |
50 | | - # How mature is this project? Common values are |
51 | | - # 3 - Alpha |
52 | | - # 4 - Beta |
53 | | - # 5 - Production/Stable |
54 | | - 'Development Status :: 5 - Production/Stable', |
55 | | - |
56 | | - # Indicate who your project is intended for |
57 | | - 'Intended Audience :: Developers', |
58 | | - 'Topic :: Software Development :: Build Tools', |
59 | | - |
60 | | - # Pick your license as you wish (should match "license" above) |
61 | | - 'Apache-2.0', |
62 | | - |
63 | | - # Specify the Python versions you support here. In particular, ensure |
64 | | - # that you indicate whether you support Python 2, Python 3 or both. |
65 | | - 'Programming Language :: Python :: 3.8', |
66 | | - 'Programming Language :: Python :: 3.9', |
67 | | - 'Programming Language :: Python :: 3.10', |
68 | | - 'Programming Language :: Python :: 3.11', |
69 | | - ], |
70 | | - |
71 | | - # What does your project relate to? |
72 | | - keywords='date math datemath elaticsearch solr', |
73 | | - |
74 | 35 | # You can just specify the packages manually here if your project is |
75 | 36 | # simple. Or you can use find_packages(). |
76 | 37 | packages=find_packages(exclude=['contrib', 'docs', 'tests']), |
77 | 38 |
|
78 | 39 | package_data={'': ['*']}, |
79 | 40 | include_package_data=True, |
80 | 41 |
|
81 | | - # Alternatively, if you want to distribute just a my_module.py, uncomment |
82 | | - # this: |
83 | | - # py_modules=["my_module"], |
84 | 42 |
|
85 | 43 | # List run-time dependencies here. These will be installed by pip when |
86 | 44 | # your project is installed. For an analysis of "install_requires" vs pip's |
|
0 commit comments