forked from akynazh/jvav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.31 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
45
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
with open("requirements.txt", encoding="utf-8") as r:
requires = [i.strip() for i in r]
with open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="Jvav",
version="2.3.0",
description="Useful tools for Jav.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/akynazh/jvav",
download_url="https://github.com/akynazh/jvav/releases/latest",
author="akynazh",
author_email="akynazh@gmail.com",
license="GPLv3",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
],
keywords="jav japan av api library python spider",
project_urls={
"Tracker": "https://github.com/akynazh/jvav/issues",
"Source": "https://github.com/akynazh/jvav",
},
python_requires="~=3.7",
packages=find_packages(),
zip_safe=False,
install_requires=requires,
entry_points={
"console_scripts": [
"jvav=jvav.cmd:main",
],
},
)
"""
python -m build && twine upload dist/*
pip install jvav -U -i https://pypi.org/simple
"""