-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.17 KB
/
setup.py
1
from distutils.core import setup, Extensionwith open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read()setup( name = "get_useragents", packages = ["get_useragents"], package_dir = {"get_useragents": "src/get_useragents"}, package_data = {"get_useragents": ["data/get_useragents.json"]}, version = "1.7", license ="MIT", description = "This library is used to make it easier for developers or users to get random user agents", long_description = long_description, long_description_content_type = "text/markdown", author = "Angga Kurniawan", author_email = "g4rzkurniawan@gmail.com", url = "https://github.com/g4rzk/get_useragents", download_url = "https://github.com/g4rzk/get_useragents/archive/get_useragents.tar.gz", keywords = [ "get_useragents", "get-useragents", "useragent random", "get useragent", "user-agent" ], classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Topic :: Software Development :: Build Tools", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", ],)