-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 764 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (24 loc) · 764 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
from setuptools import setup, find_packages
setup(
name='email_api',
version='0.1',
packages=find_packages(exclude=['tests']),
install_requires=[
'bottle>=0.12.9',
'email-validator>=1.0.0',
'requests>=2.9.1',
'PyYAML>=3.11'
],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst']
},
# metadata for upload to PyPI
author="Julien Marechal",
author_email="julien.marechal35@example.com",
description="API to send email through through parties API",
license="BSD",
keywords="API email smtp",
url="https://github.com/MarechJ/email_api",
# could also include long_description, download_url, classifiers, etc.
)