-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
45 lines (38 loc) · 1.11 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
41
42
43
44
45
#!/usr/bin/env python
import os
from setuptools import setup
version = '0.2.4.dev0'
__doc__ = "Reusable blog app for Django-Widgy"
def get_absolutepath(fname):
return os.path.join(os.path.dirname(__file__), fname)
def read(fname):
with open(get_absolutepath(fname), 'r') as f:
return f.read()
setup(
name='django-widgy-blog',
version=version,
author='Fusionbox, Inc.',
author_email='programmers@fusionbox.com',
description=__doc__,
long_description='\n\n'.join([read('README.rst'), read('CHANGES.rst')]),
url='https://github.com/fusionbox/django-widgy-blog/',
license='BSD',
packages=['widgy_blog'],
include_package_data=True,
package_data={
'': ['CHANGES.rst'],
},
install_requires=[
'django-widgy',
],
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
]
)