-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (42 loc) · 1.35 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
import os
from distutils.core import setup
def read_file_into_string(filename):
path = os.path.abspath(os.path.dirname(__file__))
filepath = os.path.join(path, filename)
try:
return open(filepath).read()
except IOError:
return ''
def get_readme():
for name in ('README', 'README.rst', 'README.md'):
if os.path.exists(name):
return read_file_into_string(name)
return ''
setup(
name='kb-enquiry',
packages=['enquiry', 'enquiry.management', 'enquiry.management.commands', 'enquiry.tests', 'enquiry.migrations'],
package_data={
'enquiry': [
'templates/*.*',
'templates/enquiry/*.*',
],
},
version='0.1.28',
description='enquiry',
author='Malcolm Dinsmore',
author_email='code-md@kbsoftware.co.uk',
url='git@github.com:pkimber/enquiry.git',
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Framework :: Django :: 1.8',
'Topic :: Office/Business :: Scheduling',
],
long_description=get_readme(),
)