forked from transientskp/banana
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 840 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 840 Bytes
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
from distutils.core import setup
from setuptools import find_packages
setup(
name='banana',
version='0.1',
author='Gijs Molenaar',
author_email='gijsmolenaar%(at)sgmail.com' % {'at': '@'},
packages=find_packages(),
include_package_data=True,
url='https://github.com/gijzelaerr/banana',
license='BSD licence, see LICENCE',
description='A webinterface for TKP',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: JavaScript',
],
)