-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
40 lines (36 loc) · 1.21 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
import os
from setuptools import setup, find_packages
import happenings
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-happenings',
version=happenings.__version__,
packages=find_packages(),
include_package_data=True,
license='BSD License',
description='A simple event calendar app for Django.',
long_description=README,
author='Reuben Urbina',
author_email='[email protected]',
url=happenings.__url__,
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=[
'django >= 1.6',
'pytz',
'six >= 1.9, < 2.0',
],
)