File tree Expand file tree Collapse file tree 3 files changed +9
-12
lines changed Expand file tree Collapse file tree 3 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -9,3 +9,8 @@ testfiles
99
1010# Cache
1111__pycache__
12+
13+ # Package
14+ dist
15+ build
16+ python_resumable.egg-info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22
3- from distutils . core import setup
3+ from setuptools import setup , find_packages
44
55setup (name = 'python_resumable' ,
66 version = '0.1.0' ,
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 )
You can’t perform that action at this time.
0 commit comments