-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 865 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 865 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 distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='WhereToMeetup',
description='WhereToMeetup connects meetup organizers with hosts and sponsors.',
version='0.9.5',
author='NYCPython',
author_email='info@wheretomeetup.com',
license='BSD',
url='https://github.com/NYCPython/wheretomeetup',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
# 'License :: OSI Approved :: BSD License',
'Development Status :: 3 - Alpha',
'Topic :: Internet :: WWW/HTTP',
],
# dependencies should be managed with `pip install -r requirements.txt`
install_requires=[],
setup_requires=['nose'],
tests_require=['coverage'],
py_modules=['distribute_setup'],
packages=['meetups'],
)