-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (36 loc) · 1 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
"""
setup
~~~~~
:copyright: (c) 2013-2014 by Linovia, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from setuptools import setup, find_packages
import sys
with open('requirements.txt') as f:
install_requires = f.read()
setup(
name='django-agile-boards',
version='0.1.0',
author='Xavier Ordoquy',
author_email='[email protected]',
url='https://www.linovia.com',
description='Agile boards web application.',
long_description=open('README.md').read(),
packages=find_packages('.'),
zip_safe=False,
install_requires=install_requires,
license='BSD',
include_package_data=True,
entry_points={
'console_scripts': [
'agileboards = agileboards.runner:main',
],
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)