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/
|
build/
|
||||||
|
dist/
|
||||||
.cache/
|
.cache/
|
||||||
*.egg
|
*.egg
|
||||||
*.egg-info/
|
*.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
|
# 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/>.
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='paypal_rest',
|
name='paypal_rest',
|
||||||
description="Library to access PayPal's REST API",
|
description="Library to access PayPal's REST API",
|
||||||
version='0.9.0',
|
version='1.0.0',
|
||||||
author='Software Freedom Conservancy',
|
author='Software Freedom Conservancy',
|
||||||
author_email='info@sfconservancy.org',
|
author_email='info@sfconservancy.org',
|
||||||
license='GNU AGPLv3+',
|
license='GNU AGPLv3+',
|
||||||
|
url='https://k.sfconservancy.org/NPO-Accounting/paypal_rest',
|
||||||
|
|
||||||
|
python_requires='>=3.6',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'iso8601>=0.1', # Debian:python3-iso8601
|
'iso8601>=0.1', # Debian:python3-iso8601
|
||||||
'oauthlib>=2.0', # Debian:python3-oauthlib
|
'oauthlib>=2.0', # Debian:python3-oauthlib
|
||||||
|
|
Loading…
Reference in a new issue