-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.62 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
46
47
48
49
50
from distutils.core import setup
import os
def read_file(filename):
"""Read a file into a string"""
path = os.path.abspath(os.path.dirname(__file__))
filepath = os.path.join(path, filename)
try:
return open(filepath).read()
except IOError:
return ''
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir:
os.chdir(root_dir)
for dirpath, dirnames, filenames in os.walk('postoffice'):
# Ignore dirnames that start with '.'
dirnames[:] = [d for d in dirnames if not d.startswith('.')]
if '__init__.py' in filenames:
pkg = dirpath.replace(os.path.sep, '.')
if os.path.altsep:
pkg = pkg.replace(os.path.altsep, '.')
packages.append(pkg)
elif filenames:
prefix = dirpath[11:] # Strip "postoffice/" or "postoffice\"
for f in filenames:
data_files.append(os.path.join(prefix, f))
setup(
name='django-postoffice',
description='',
version="0.1.0dev",
author='Jeff Bradberry',
author_email='[email protected]',
url='http://github.com/jbradberry/django-postoffice',
package_dir={'postoffice': 'postoffice'},
packages=packages,
package_data={'postoffice': data_files},
classifiers=['Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
long_description=read_file('README.rst'),
)