diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/setup.py b/setup.py index c21b9e0..3b9a1c4 100644 --- a/setup.py +++ b/setup.py @@ -13,18 +13,28 @@ with io.open("README.md", encoding="utf-8") as f: setup(name="openbsd", version="0.1.0", url="", - download_url="", - author="yuce", - author_email="", - description="", + download_url="https://github.com/yuce/pyopenbsd", + author="Yuce Tekol", + author_email="yucetekol@gmail.com", + description="OpenBSD Library", long_description=long_description, long_description_content_type="text/markdown", - license="", + license="BSD", packages=["openbsd"], keywords=["OpenBSD"], setup_requires=["cffi>=1.12.3"], cffi_modules=["openbsd/openbsd_builder.py:ffibuilder"], install_requires=["cffi>=1.12.3"], tests_require=["pytest", "pytest-cov"], - classifiers=[], + classifiers=[ + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Operating System :: POSIX :: BSD :: OpenBSD", + "License :: OSI Approved :: BSD License", + ], + ) |