-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (37 loc) · 1.3 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
import os
from setuptools import find_packages, setup
def readme():
with open("README.md") as f:
return f.read()
setup(
name="magnet2torrent",
version="1.2.1",
url="https://github.com/JohnDoee/magnet2torrent",
author="Anders Jensen",
author_email="[email protected]",
description="Turn a bittorrent magnet links into a .torrent file.",
long_description=readme(),
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages("src"),
package_dir={"":"src"},
include_package_data=True,
install_requires=["aiohttp==3.*", "expiringdict>=1.2.0"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
],
entry_points={
"console_scripts": ["magnet2torrent = magnet2torrent.__main__:main",]
},
)