-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (37 loc) · 1.43 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
37
38
39
40
41
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os import path
from setuptools import setup, find_packages
version = __import__("thepysec").__version__
def read(fname):
with open(path.join(path.dirname(__file__), fname)) as f:
return f.read()
setup(
name="thepysec",
version=version,
python_requires=">=3.8",
description="Python secretaries you call at will, for instant py-relief.",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/raratiru/thepysec",
author="Raratiru",
author_email="[email protected]",
license="BSD 3-Clause License",
packages=find_packages(exclude=("tests", "docs")),
setup_requires=["pytest-runner"],
tests_require=["pytest", "pytest-cov", "psycopg2-binary"],
extras_require={"dev": ["pytest", "pytest-cov", "ipdb", "psycopg2-binary"]},
install_requires=["unidecode"],
classifiers=[
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)