-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (34 loc) · 1015 Bytes
/
Copy pathsetup.py
File metadata and controls
41 lines (34 loc) · 1015 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
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import dlvr
import os
from setuptools import setup, find_packages
## dependencies
install_requires = [
]
packages = find_packages()
setup(
name='dlvr',
version=dlvr.__version__,
author='Bernhard Maeser',
author_email='bernhard.maeser@gmail.com',
url='https://github.com/bmaeser/dlvr',
license="MIT",
#scripts=['bin/dlvr'],
description="email sending for humans",
long_description=open('README.rst').read(),
packages = packages,
include_package_data=True,
install_requires = install_requires,
zip_safe=False,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Topic :: Utilities',
'Topic :: Communications :: Email',
'Topic :: Communications :: Email :: Email Clients (MUA)',
'Operating System :: POSIX',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
),
)