| Index: setup.py |
| =================================================================== |
| --- a/setup.py |
| +++ b/setup.py |
| @@ -17,6 +17,8 @@ |
| from os import path |
| from setuptools import setup, Command |
| +with open('README.md', 'r') as fh: |
|
Sebastian Noack
2018/12/28 00:22:51
This assumes that the README.md exists in the curr
rhowell
2018/12/28 21:50:08
Done.
|
| + long_description = fh.read() |
| DEVENV = 'devenv' |
| PIP = path.join(DEVENV, 'bin', 'pip') |
| @@ -43,10 +45,11 @@ |
| setup( |
| name='python-abp', |
| - version='0.0.1', |
| - description='ABP python tools', |
| - long_description='A library for working with Adblock Plus filter lists.', |
| - author='Eyeo GmbH', |
| + version='0.1.0', |
| + description='A library for working with Adblock Plus filter lists.', |
| + long_description=long_description, |
| + long_description_content_type='text/markdown', |
| + author='eyeo GmbH', |
| author_email='info@adblockplus.org', |
| url='https://hg.adblockplus.org/python-abp/', |
| packages=['abp', 'abp.filters'], |
| @@ -60,14 +63,14 @@ |
| zip_safe=False, |
| keywords='filterlist adblockplus ABP', |
| classifiers=[ |
| - 'Development Status :: 2 - Pre-Alpha', |
| + 'Development Status :: 4 - Beta', |
| 'Intended Audience :: Developers', |
| 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', |
| 'Natural Language :: English', |
| - 'Programming Language :: Python :: 2', |
|
Sebastian Noack
2018/12/28 00:22:51
Why did you remove this? This classifier indicates
rhowell
2018/12/28 21:50:08
Oops, guess I assumed it referred to Python 2.0. F
|
| 'Programming Language :: Python :: 2.7', |
| 'Programming Language :: Python :: 3', |
| 'Programming Language :: Python :: 3.5', |
| 'Programming Language :: Python :: 3.6', |
| + 'Operating System :: OS Independent', |
| ], |
|
Sebastian Noack
2018/12/28 00:22:51
You might want to add:
Topic :: Software Developm
rhowell
2018/12/28 21:50:08
Done.
|
| ) |