-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
24 lines (22 loc) · 868 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python3
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name="nativemessaging",
version="1.0.1",
description="A package with basic native messaging apis for webextensions",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Rayquaza01/nativemessaging",
author="Rayquaza01",
author_email="[email protected]",
license="MPL 2.0",
packages=["nativemessaging"],
scripts=["bin/nativemessaging-install.py"],
include_package_data=True,
package_data={"": ["README.md"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent"
])