-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.44 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
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
"""This module contains setup instructions for armadyl."""
import os
from setuptools import setup
curr_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(curr_dir, 'README.md')) as f:
long_description = f.read()
with open(os.path.join(curr_dir, 'armadyl', 'version.py')) as f:
exec(f.read())
setup(
name='armadyl',
version=__version__, # noqa: F821
author='Taylor Fox Dahlin',
packages=['armadyl'],
package_data={'': ['LICENSE'], },
url='https://github.com/tfdahlin/armadyl',
license='MIT',
entry_points={
},
install_requires=['pycnic'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
description=('A lightweight Python 3 web framework.'),
include_package_data=True,
long_description_content_type='text/markdown',
long_description=long_description,
zip_safe=True,
python_requires='>=3.6',
project_urls={
'Bug Reports': 'https://github.com/tfdahlin/armadyl'
},
keywords=['API', 'Framework']
)