-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.1 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
long_description = '\n\n'.join([
open('CHANGES.rst').read(),
open('CONTRIBUTORS.rst').read(),
open('README.rst').read(),
])
long_license = open('LICENSE.rst').read()
setup(
name='Evie',
version='0.0.1.dev0',
packages=find_packages('evie'),
description='A Python based CMS system.',
long_description=open('README.rst').read(),
author='Jesse Stippel',
author_email='[email protected]',
include_package_data=True,
install_requires=['quart'],
license='MIT',
long_license=long_license,
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
keywords='Python Evie CMS',
)