-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.19 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.19 KB
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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(
name='oide-simpleupload',
version='0.0.dev1',
author=u'Zebula Sampedro',
author_email='sampedro@colorado.edu',
packages=find_packages(),
include_package_data=True,
url='https://github.com/ResearchComputing/oide-simpleupload',
license='AGPLv3, see LICENSE',
description="Online Integrated Development Environment (OIDE) - Simplie HTTP Upload App",
long_description=open('README.md').read(),
zip_safe=False,
install_requires=[
'oide',
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: Unix',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: Build Tools',
'Topic :: Text Editors :: Integrated Development Environments (IDE)',
'Topic :: Terminals :: Terminal Emulators/X Terminals',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 2.7',
'Programming Language :: JavaScript',
],
)