-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (24 loc) · 876 Bytes
/
setup.py
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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
setup(
name='pythonkc-meetups',
version='0.1.0',
description='Provides PythonKC Meetup.com events.',
license='MIT',
url='https://github.com/pythonkc/pythonkc-meetups',
packages=find_packages(),
install_requires=['distribute', 'requests==0.7.5',
'mimeparse==0.1.3', 'python-dateutil==1.5'],
author='Steven Cummings',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries'
]
)