1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- setup.py.orig 2020-09-19 15:39:42 UTC
+++ setup.py
@@ -5,13 +5,13 @@ setup(
release_posttag = ""
setup(
- name='pySmartDL',
+ name='pysmartdl',
version=pySmartDL.__version__ + release_posttag,
url='http://pypi.python.org/pypi/pySmartDL/',
author='Itay Brandes',
author_email='brandes.itay+pysmartdl@gmail.com',
license='Public Domain',
- packages=find_packages(),
+ packages=find_packages(exclude=['test*']),
description='A Smart Download Manager for Python',
long_description=open('README.md').read(),
test_suite = "test.test_pySmartDL.test_suite",
|