2019-11-15 18:17:06 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="techrec",
|
2019-11-15 19:57:49 +01:00
|
|
|
version="1.1.3",
|
2019-11-15 18:17:06 +01:00
|
|
|
description="A Python2 web application "
|
|
|
|
"that assist radio speakers in recording their shows",
|
|
|
|
long_description=open("README.md").read(),
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
author="boyska",
|
|
|
|
author_email="piuttosto@logorroici.org",
|
|
|
|
packages=["techrec"],
|
|
|
|
package_dir={"techrec": "server"},
|
2019-11-15 22:30:37 +01:00
|
|
|
install_requires=["Paste~=3.2", "SQLAlchemy==0.8.3", "bottle~=0.12"],
|
2019-11-15 19:20:56 +01:00
|
|
|
classifiers=["Programming Language :: Python :: 2.7"],
|
|
|
|
entry_points={"console_scripts": ["techrec = techrec.cli:main"]},
|
|
|
|
zip_safe=False,
|
|
|
|
install_package_data=True,
|
|
|
|
package_data={"techrec": ["static/**/*", "pages/*.html"]},
|
2019-11-15 22:30:37 +01:00
|
|
|
test_suite="nose.collector",
|
|
|
|
setup_requires=["nose>=1.0"],
|
|
|
|
tests_requires=["nose>=1.0"],
|
2019-11-15 18:17:06 +01:00
|
|
|
)
|