poobrains/setup.py

32 lines
786 B
Python
Raw Permalink Normal View History

2017-02-25 22:56:28 +00:00
from setuptools import setup, find_packages
2017-02-25 21:50:32 +00:00
setup(
name='poobrains',
2017-02-25 22:37:29 +00:00
author='phryk',
2017-03-01 20:07:37 +00:00
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 3',
2017-03-01 20:07:37 +00:00
],
2017-08-13 20:36:32 +00:00
install_requires=[
'flask',
'peewee',
2018-10-22 16:48:23 +00:00
'pyOpenSSL', # to create TLS client certs
2020-11-08 23:59:23 +00:00
'PyNaCl', # usable crypto for things like encrypted server-side sessions
2017-08-13 20:36:32 +00:00
'pyScss',
'pillow', # for image manipulation and generation (primarily to generate captchas)
'markdown (>=3.0)',
'pyproj', # map projection
'pretty-bad-protocol', # formerly 'gnupg'
2020-11-12 08:24:27 +00:00
'geojson',
'bson',
],
2017-02-25 23:42:41 +00:00
extras_require={
'dev': ['pudb'],
},
2017-02-25 23:08:16 +00:00
packages=find_packages(),
2017-03-01 21:31:47 +00:00
include_package_data=True,
2017-02-25 21:50:32 +00:00
)