-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 912 Bytes
/
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
from setuptools import setup, find_packages
# from pip.req import parse_requirements
import os
name = "w20e.paywall"
version = "1.0.0"
install_requires = []
with open('requirements.txt') as fp:
install_requires = fp.read()
setup(
name=name,
version=version,
description="Paywall",
# long_description=read('README.md'),
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: JavaScript',
'Programming Language :: Python',
'Framework :: Flask',
],
keywords="flask,mollie,payment,paywall",
author="Wietze Helmantel",
author_email='helmantel@turftorr.nl',
url='http://turftorr.nl',
license='MIT',
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points="""
[console_scripts]
""",
)