-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·50 lines (36 loc) · 1.18 KB
/
setup.py
File metadata and controls
executable file
·50 lines (36 loc) · 1.18 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
46
47
48
49
50
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
import os
parent_directory = os.path.abspath(os.path.dirname(__file__))
meta_files = {
'README.md': None,
'CLASSIFIERS.txt': None,
}
for filename in meta_files:
try:
current_file = open(os.path.join(parent_directory, filename))
meta_files[filename] = current_file.read()
current_file.close()
except IOError:
raise IOError('{0} not found.'.format(filename))
classifiers = meta_files['CLASSIFIERS.txt'].split('\n')
classifiers.remove('')
setup(name='django-contact',
description='System for working with contacts/identities in django.',
long_description=meta_files['README.md'],
version='0.1.1',
classifiers=classifiers,
author='Brandon R. Stoner',
author_email='monokrome@limpidtech.com',
url='http://github.com/LimpidTech/django-contact',
packages=['contact'],
keywords='web django identity management contacts',
zip_safe=False,
install_requires=[
'django-model-utils >= 1.4.0, < 2.0',
])