forked from NeCTAR-RC/nectar-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.26 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
readme = open('README.rst').read()
setup(
name='nectar-dashboard',
version='0.1.0',
description='nectar-dashboard',
long_description=readme,
author='Sam Morrison',
author_email='[email protected]',
url='https://github.com/NeCTAR-RC/nectar-dashboard',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'local']),
include_package_data=True,
install_requires=["djangorestframework",
"pymysql",
"python-dateutil"],
license="GPLv3+",
zip_safe=False,
keywords='NeCTAR-RC/nectar-dashboard',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)