-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
27 lines (26 loc) · 848 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
25
26
27
from setuptools import setup, find_packages
setup(
name="redstone",
version="0.3.0",
author="Mathew Odden",
author_email="mathewrodden@gmail.com",
url="https://github.com/mrodden/redstone",
packages=find_packages(),
install_requires=["requests[security]", "cryptography"],
extras_require={
"docs": ["sphinx>=3.1", "sphinx_rtd_theme"],
},
entry_points={
"console_scripts": [
"rs-crypto = redstone.crypto.__main__:main",
"rs-keyprotect = redstone.keyprotect.cli:main",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
],
)