forked from 7sDream/torrent_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (40 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import torrent_parser
setup(
name="torrent_parser",
keywords=["file", "torrent", "JSON", "parser"],
version=torrent_parser.__version__,
py_modules=["torrent_parser"],
url="https://github.com/7sDream/torrent_parser",
license="MIT",
author="7sDream",
author_email="[email protected]",
description="A .torrent file parser and creator for both Python 2 and 3",
install_requires=[],
entry_points={"console_scripts": ["pytp=torrent_parser:__main"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"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",
"Topic :: Multimedia",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
)