-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (33 loc) · 1.24 KB
/
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
28
29
30
31
32
33
34
35
36
import pathlib
from setuptools import setup, find_packages
VERSION = "2.0.0"
PROJECT_DIR = pathlib.Path(__file__).parent
SRC_DIR = PROJECT_DIR / "src"
setup(
name='pypleasant',
version=VERSION,
description="Python library and script to access the API of the pleasant password server.",
long_description=(PROJECT_DIR / "README.md").read_text(),
long_description_content_type="text/markdown",
license="MIT",
author='Dominik Bermühler',
author_email='[email protected]',
url='https://github.com/dbermuehler/pypleasant',
install_requires=['requests'],
package_dir={'': str(SRC_DIR)},
packages=find_packages(str(SRC_DIR)),
entry_points={'console_scripts': ['pleasant-cli=pypleasant.cli:main']},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Security",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License"
],
python_requires='>=3.6'
)