-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.34 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import sys
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="payable-subscriptions",
version="1.0.8",
url='https://github.com/curtis628/payable-subscriptions',
author='Tyler Curtis',
author_email="[email protected]",
description="Integrates out-of-the-box payment processing for django-flexible-subscriptions",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=['tests*']),
project_urls={
'Source code': 'https://github.com/curtis628/payable-subscriptions',
'Issues': 'https://github.com/curtis628/payable-subscriptions/issues',
},
python_requires='>=3.7',
install_requires=[
'django>=4.0',
'django-flexible-subscriptions>=0.15.1',
'venmo-api>=0.3.1',
'google-api-python-client>=2.74.0',
'google-auth-httplib2>=0.1.0',
'google-auth-oauthlib>=0.8.0',
],
tests_require=[
'pytest>=6.0.0',
],
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Framework :: Django :: 4.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Unix',
],
entry_points={},
)