-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 844 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='Strana',
version='0.0.3',
packages=['Strana'],
url='https://github.com/i-abh-esc-wq/Strana',
license='GNU General Public License v3',
author='Aniket Bhattacharyea',
author_email='[email protected]',
description='Strana is a templating engine inspired by Jinja2',
long_description=long_description,
long_description_content_type="text/markdown",
#install_requires = ['functools','regex','inspect','os','collections','copy','uuid'],
python_requires='>=3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
],
keywords='templating engine'
)