-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.11 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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup
from backlog import __author__, __license__, __title__, __version__
with open('README.rst', 'r') as f:
readme = f.read()
setup(
name=__title__,
version=__version__,
author=__author__,
maintainer=__author__,
url="https://github.com/ryo8000/backlog-api4py",
description="Backlog API for Python",
long_description=readme,
license=__license__,
packages=[
"backlog",
],
python_requires=">=3.7.0",
install_requires=[
"requests>=2.0"
],
classifiers=[
"Topic :: Software Development",
"Development Status :: 7 - Inactive",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
]
)