-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 842 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 842 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
from setuptools import setup, find_packages
setup(
name='pyhectane',
version='0.4.1',
packages=find_packages(),
install_requires=[
'requests>=2.4.2',
'six',
],
author='Nathan Osman',
author_email='nathan@quickmediasolutions.com',
description="Python module for sending emails with Hectane",
license='MIT',
url='https://github.com/hectane/python-hectane',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)