Skip to content

Commit 692f87f

Browse files
author
Игорь
committed
Switched to setuptools.
1 parent d7fe6ba commit 692f87f

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@ testfiles
99

1010
#Cache
1111
__pycache__
12+
13+
#Package
14+
dist
15+
build
16+
python_resumable.egg-info

MANIFEST.in

Lines changed: 0 additions & 5 deletions
This file was deleted.

setup.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
from distutils.core import setup
3+
from setuptools import setup, find_packages
44

55
setup(name='python_resumable',
66
version='0.1.0',
@@ -10,10 +10,7 @@
1010
license='MIT',
1111
keywords='resumablejs',
1212
install_requires=['natsort'],
13-
url='',
14-
package_dir={
15-
'python_resumable': 'python_resumable',
16-
'python_resumable.models': 'python_resumable/models'
17-
},
18-
packages=['python_resumable', 'python_resumable.models'],
13+
python_requires='>=3',
14+
url='https://github.com/Reriiru/python-resumable',
15+
packages=find_packages(),
1916
)

0 commit comments

Comments
 (0)