diff --git a/rookie-rs/MIT-LICENSE.txt b/MIT-LICENSE.txt similarity index 93% rename from rookie-rs/MIT-LICENSE.txt rename to MIT-LICENSE.txt index 22d5480..66832d3 100644 --- a/rookie-rs/MIT-LICENSE.txt +++ b/MIT-LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2012-2023 Scott Chacon and others +Copyright (c) 2023-2024 thewh1teagle and others Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index dd87487..64595a3 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -5,12 +5,23 @@ build-backend = "maturin" [project] name = "rookiepy" description = "Load cookies from any browser on any platform" +license = "MIT" +authors = [ + {name = "thewh1teagle"}, +] requires-python = ">=3.7" classifiers = [ + "License :: OSI Approved :: MIT License", + "Operating System :: MacOS", + "Operating System :: Microsoft :: Windows", + "Operating System :: POSIX :: Linux", "Programming Language :: Rust", + "Programming Language :: Python", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", + "Topic :: Internet :: WWW/HTTP :: Browsers", + "Topic :: Internet :: WWW/HTTP :: Session", ] [project.urls] diff --git a/rookie-rs/Cargo.toml b/rookie-rs/Cargo.toml index b57dab2..161aede 100644 --- a/rookie-rs/Cargo.toml +++ b/rookie-rs/Cargo.toml @@ -3,7 +3,7 @@ name = "rookie" version = "0.5.2" edition = "2021" description = "Load cookie from your web browsers" -license-file = "MIT-LICENSE.txt" +license-file = "../MIT-LICENSE.txt" homepage = "https://crates.io/crates/rookie" documentation = "https://docs.rs/rookie/" repository = "https://github.com/thewh1teagle/rookie"