2017-04-02 22:11:58 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
|
|
def read_file(path):
|
|
|
|
with open(path) as file:
|
|
|
|
return file.read()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="magneticow",
|
2017-06-14 10:35:35 +02:00
|
|
|
version="0.6.0",
|
2017-04-02 22:11:58 +02:00
|
|
|
description="Lightweight web interface for magnetico.",
|
|
|
|
long_description=read_file("README.rst"),
|
|
|
|
url="http://magnetico.org",
|
|
|
|
author="Mert Bora ALPER",
|
|
|
|
author_email="bora@boramalper.org",
|
|
|
|
license="GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
|
|
packages=["magneticow"],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
entry_points={
|
|
|
|
"console_scripts": ["magneticow=magneticow.__main__:main"]
|
|
|
|
},
|
|
|
|
|
|
|
|
install_requires=[
|
2017-04-10 15:44:09 +02:00
|
|
|
"appdirs >= 1.4.3",
|
|
|
|
"flask >= 0.12.1",
|
|
|
|
"gevent >= 1.2.1"
|
2017-04-02 22:11:58 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 2 - Pre-Alpha",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Intended Audience :: End Users/Desktop",
|
|
|
|
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"Programming Language :: Python :: Implementation :: CPython"
|
|
|
|
]
|
|
|
|
)
|