forked from JohnDoee/magnet2torrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.15 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
import os
from setuptools import find_packages, setup
def readme():
with open("README.md") as f:
return f.read()
setup(
name="magnet2torrent",
version="1.1.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", "six", "expiringdict"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
],
entry_points={
"console_scripts": ["magnet2torrent = magnet2torrent.__main__:main",]
},
)