-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
44 lines (37 loc) · 1.38 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
44
import os.path
from setuptools import find_packages, setup
project_root = os.path.abspath(os.path.dirname(__file__))
install_requires = []
with open(os.path.join(project_root, "requirements.txt"), "r") as f:
for line in f:
install_requires.append(line.rstrip())
with open(os.path.join(project_root, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="pystalk",
version="0.7.0",
author="EasyPost",
author_email="[email protected]",
url="https://github.com/easypost/pystalk",
description="Very simple beanstalkd client",
long_description=long_description,
long_description_content_type="text/markdown",
license="ISC",
install_requires=install_requires,
packages=find_packages(exclude=["tests", "tests.*"]),
python_requires=">=3.6, <4",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Database",
"License :: OSI Approved :: ISC License (ISCL)",
],
)