forked from earthastronaut/django-meetup
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (39 loc) · 1.29 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (39 loc) · 1.29 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
PURPOSE: Install django-meetup
AUTHOR: dylangregersen
DATE: Tue Sep 16 09:01:37 2014
"""
import os
import meetup
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
# get requirements
install_requires = open("requirements.txt").read().split("\n")
# get the readme to post on pypi
readme = open('README.rst').read()+"\nLicense\n-------\n"+open("LICENSE").read()
setup(
name="django-meetup",
version=meetup.__version__,
author="Dylan Gregersen",
author_email = "gregersen.dylan@gmail.com",
description="General purpose tool to sync a local database with Meetup.com content",
url="https://github.com/astrodsg/django-meetup",
long_description=readme,
license="3-clause BSD style license",
platforms=["any"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=install_requires,
packages=find_packages(),
include_package_data=True,
)