Fr3deric
6 years ago
2 changed files with 31 additions and 1 deletions
@ -0,0 +1,31 @@
@@ -0,0 +1,31 @@
|
||||
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', |
||||
], |
||||
) |
Loading…
Reference in new issue