-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 807 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 807 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='Sympal',
packages=['Sympal'],
version='0.5',
description='Basic end user Sympa listserv management with Python requests',
url='https://github.com/cacampbell/Sympal',
download_url='https://github.com/cacampbell/Sympal/tarball/0.5',
author='Chris Campbell',
author_email='cacampbell@ucdavis.edu',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='sympa listserv requests',
install_requires=['DateTime', 'lxml', 'requests'],
)