You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1002 B
32 lines
1002 B
6 years ago
|
import os
|
||
|
from setuptools import find_packages, setup
|
||
|
|
||
|
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
|
||
|
README = readme.read()
|
||
|
|
||
|
# allow setup.py to be run from any path
|
||
|
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
||
|
|
||
|
setup(
|
||
|
name='bam',
|
||
|
version='0.1',
|
||
|
packages=find_packages(),
|
||
|
include_package_data=True,
|
||
|
#license='',
|
||
|
description='Blinkenbunt Account Manager',
|
||
|
long_description=README,
|
||
|
url='https://git.blinkenbunt.org/blinkenbunt.org/bam',
|
||
|
classifiers=[
|
||
|
'Environment :: Web Environment',
|
||
|
'Framework :: Django',
|
||
|
'Framework :: Django :: 2.2',
|
||
|
'Intended Audience :: Developers',
|
||
|
'Operating System :: OS Independent',
|
||
|
'Programming Language :: Python',
|
||
|
'Programming Language :: Python :: 3.5',
|
||
|
'Programming Language :: Python :: 3.6',
|
||
|
'Topic :: Internet :: WWW/HTTP',
|
||
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
||
|
],
|
||
|
)
|