34 lines
971 B
Python
34 lines
971 B
Python
import os
|
|
from setuptools import setup
|
|
|
|
cwd = os.path.dirname(__file__)
|
|
with open(os.path.join(cwd, 'README.md')) as readme:
|
|
README = readme.read()
|
|
|
|
with open(os.path.join(cwd, 'requirements.txt')) as requirements:
|
|
REQUIREMENTS = requirements.read()
|
|
REQUIREMENTS = [r for r in REQUIREMENTS.split('\n') if r]
|
|
|
|
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
|
|
|
setup(
|
|
name='aircox',
|
|
version='0.1',
|
|
license='GPLv3',
|
|
author='lordblackfox',
|
|
description='Aircox is a radio programs manager that includes tools and cms'
|
|
long_description=README,
|
|
url='http://bkfox.net/',
|
|
include_package_data=True,
|
|
packages = ['aircox']
|
|
install_requires=REQUIREMENTS,
|
|
classifiers=[
|
|
'Framework :: Django',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.2',
|
|
'Programming Language :: Python :: 3.3',
|
|
],
|
|
)
|
|
|