Skip to content

Instantly share code, notes, and snippets.

@wesyoung
Created November 15, 2016 19:03
Show Gist options
  • Save wesyoung/42a59e7f71267d8da357bea007a17469 to your computer and use it in GitHub Desktop.
Save wesyoung/42a59e7f71267d8da357bea007a17469 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import, print_function
import io
import os
import re
from glob import glob
from os.path import basename
from os.path import dirname
from os.path import join
from os.path import splitext
from setuptools import find_packages
from setuptools import setup
setup(
name='testmail',
version='0.1.0',
license='LGPL3',
description='""',
author='Jake',
author_email='jake@wowguildtalk.com',
url='https://wowguildtalk.com',
packages=[],
classifiers=[
"Topic :: System :: Networking",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
],
keywords=[
# eg: 'keyword1', 'keyword2', 'keyword3',
],
install_requires=[
# eg: 'aspectlib==1.1.1', 'six>=1.7',
],
extras_require={
# eg:
# 'rst': ['docutils>=0.11'],
# ':python_version=="2.6"': ['argparse'],
},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment