setup: Packaging improvements for 1.0 release.
This commit is contained in:
parent
2319df1066
commit
121f7f2f3d
3 changed files with 7 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
|||
build/
|
||||
dist/
|
||||
.cache/
|
||||
*.egg
|
||||
*.egg-info/
|
||||
|
|
3
MANIFEST.in
Normal file
3
MANIFEST.in
Normal file
|
@ -0,0 +1,3 @@
|
|||
include LICENSE.txt
|
||||
include *.rst
|
||||
include tests/*.py
|
5
setup.py
5
setup.py
|
@ -15,17 +15,18 @@
|
|||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='paypal_rest',
|
||||
description="Library to access PayPal's REST API",
|
||||
version='0.9.0',
|
||||
version='1.0.0',
|
||||
author='Software Freedom Conservancy',
|
||||
author_email='info@sfconservancy.org',
|
||||
license='GNU AGPLv3+',
|
||||
url='https://k.sfconservancy.org/NPO-Accounting/paypal_rest',
|
||||
|
||||
python_requires='>=3.6',
|
||||
install_requires=[
|
||||
'iso8601>=0.1', # Debian:python3-iso8601
|
||||
'oauthlib>=2.0', # Debian:python3-oauthlib
|
||||
|
|
Loading…
Reference in a new issue