Removed unused packages and restored requirements file.
This commit is contained in:
@@ -1 +1,2 @@
|
|||||||
.
|
docopt==0.6.2
|
||||||
|
colored==1.3.5
|
||||||
|
|||||||
6
setup.py
6
setup.py
@@ -5,14 +5,14 @@ from setuptools import setup, find_packages
|
|||||||
from sys import path
|
from sys import path
|
||||||
from os.path import dirname
|
from os.path import dirname
|
||||||
|
|
||||||
from torrentSearch.__init__ import __version__
|
import torrentSearch
|
||||||
|
|
||||||
with open("README.md", "r", encoding="utf-8") as fh:
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='torrentSearch',
|
name='torrentSearch',
|
||||||
version=__version__,
|
version=torrentSearch.__version__,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
package_data={
|
package_data={
|
||||||
'torrentSearch': ['default_config.ini'],
|
'torrentSearch': ['default_config.ini'],
|
||||||
@@ -23,8 +23,6 @@ setup(
|
|||||||
long_description_content_type='text/markdown',
|
long_description_content_type='text/markdown',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'docopt',
|
'docopt',
|
||||||
'beautifulsoup4',
|
|
||||||
'termcolor',
|
|
||||||
'colored'
|
'colored'
|
||||||
],
|
],
|
||||||
url='https://github.com/KevinMidboe/torrent_search',
|
url='https://github.com/KevinMidboe/torrent_search',
|
||||||
|
|||||||
Reference in New Issue
Block a user