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.
31 lines
786 B
31 lines
786 B
from setuptools import setup, find_packages |
|
|
|
setup( |
|
name='poobrains', |
|
author='phryk', |
|
classifiers=[ |
|
'Development Status :: 2 - Pre-Alpha', |
|
'Programming Language :: Python :: 3', |
|
], |
|
|
|
install_requires=[ |
|
'flask', |
|
'peewee', |
|
'pyOpenSSL', # to create TLS client certs |
|
'PyNaCl', # usable crypto for things like encrypted server-side sessions |
|
'pyScss', |
|
'pillow', # for image manipulation and generation (primarily to generate captchas) |
|
'markdown (>=3.0)', |
|
'pyproj', # map projection |
|
'pretty-bad-protocol', # formerly 'gnupg' |
|
'geojson', |
|
'bson', |
|
], |
|
|
|
extras_require={ |
|
'dev': ['pudb'], |
|
}, |
|
|
|
packages=find_packages(), |
|
include_package_data=True, |
|
)
|
|
|