-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
37 lines (32 loc) · 878 Bytes
/
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
# -*- coding: utf-8 -
#
# This file is part of django-tecdoc released under the MIT license.
# See the NOTICE for more information.
import os
import sys
from setuptools import setup, find_packages
from tecdoc import VERSION
setup(
name='django-tecdoc',
version=VERSION,
description='Itegration django and tecdoc db',
long_description=file(
os.path.join(
os.path.dirname(__file__),
'README.md'
)
).read(),
author='Victor Safronovich',
author_email='vsafronovich@gmail.com',
license='MIT',
url='http://github.com/suvit/django-tecdoc',
zip_safe=False,
packages=find_packages(exclude=['docs', 'examples', 'tests']),
install_requires=file(
os.path.join(
os.path.dirname(__file__),
'requirements.txt'
)
).read(),
include_package_data=True,
)