1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- # Goblinoid: Experience all of MediaGoblin on an Android Device
- # Copyright (C) 2015 Dylan Jeffers
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- from setuptools import setup, find_packages
- from codecs import open
- from os import path
- here = path.abspath(path.dirname(__file__))
- # Get the long description from the relevant file
- with open(path.join(here, 'README.md'), encoding='utf-8') as f:
- long_description = f.read()
- setup(
- name='goblinoid',
- version='0.1.0.dev1',
- packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
- description='Experience MediaGoblin on an Android Device',
- long_description=long_description,
- url='https://notabug.org/SapienTech/MediaGoblinApp',
- author='Dylan Jeffers',
- author_email='sapientechnology@openmailbox.org',
- license='AGPLv3',
- classifiers=[
- 'Development Status :: 3 - Alpha',
- 'Environment :: App Environment',
- 'Intended Audience :: Developers',
- 'Topic :: Software Development :: Mobile App',
- 'License :: OSI Approved :: '
- 'GNU Affero General Public License v3 or later (AGPLv3+)',
- 'Operating System :: Android',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- ],
- install_requires=['pypump'],
- # To provide executable scripts, use entry points in preference to the
- # "scripts" keyword. Entry points provide cross-platform support and allow
- # pip to create the appropriate form of executable for the target platform.
- # entry_points={
- # 'console_scripts': [
- # 'sample=sample:main',
- # ],
- )
|