nasg/setup.py

26 lines
628 B
Python
Raw Normal View History

2017-10-27 15:56:05 +01:00
from setuptools import setup, find_packages
setup(
version='2.0.0',
2017-10-27 15:56:05 +01:00
name="nasg",
author="Peter Molnar",
author_email="hello@petermolnar.eu",
description="Not Another Static Generator - a static generator",
long_description=open('README.md').read(),
packages=['nasg'],
install_requires=[
'arrow',
'Jinja2',
'langdetect',
'requests',
'requests-oauthlib',
'sanic',
'unicode-slugify',
'Wand',
'emoji',
],
2017-10-27 15:56:05 +01:00
url='https://github.com/petermolnar/nasg',
license=open('./LICENSE').read(),
2017-10-27 15:56:05 +01:00
include_package_data=True,
)