-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 988 Bytes
/
Copy pathsetup.py
File metadata and controls
39 lines (34 loc) · 988 Bytes
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
#!/usr/bin/env python
from setuptools import setup
def long_description():
with open('README.md') as fd:
return fd.read()
setup(
name='simple-mailer',
version='1.1.1',
author='Rigel Di Scala',
author_email='zedr@zedr.com',
description='A simple mailer for web forms',
license='MIT',
long_description=long_description(),
long_description_content_type='text/markdown',
url='https://github.com/zedr/simple-mailer',
install_requires=[
'bottle==0.12.18',
'lxml==4.6.2',
'jinja2==2.11.2'
],
package_dir={'': 'src'},
packages=['simple_mailer'],
py_modules=['simple_mailer'],
include_package_data=True,
entry_points={
'console_scripts': ['simple-mailer=simple_mailer.web:main']
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.7'
)