forked from aio-libs/aiohttp-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
85 lines (78 loc) · 2.75 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import os
from importlib.machinery import SourceFileLoader
from pathlib import Path
from setuptools import setup
THIS_DIR = Path(__file__).resolve().parent
long_description = THIS_DIR.joinpath('README.rst').read_text()
# avoid loading the package before requirements are installed:
version = SourceFileLoader('version', 'aiohttp_devtools/version.py').load_module()
package = THIS_DIR.joinpath('aiohttp_devtools/start')
start_package_data = []
for _root, _, files in os.walk(str(THIS_DIR.joinpath('aiohttp_devtools/start/template'))):
root = Path(_root)
for f in files:
p = root / f
start_package_data.append(str(p.relative_to(package)))
name = 'aiohttp-devtools'
repo_slug = 'aio-libs/{}'.format(name)
repo_url = 'https://github.com/{}'.format(repo_slug)
setup(
name=name,
version=str(version.VERSION),
description='Dev tools for aiohttp',
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Environment :: MacOS X',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
'Framework :: AsyncIO',
],
author='Samuel Colvin',
author_email='s@muelcolvin.com',
url=repo_url,
project_urls={
'CI: AppVeyor': 'https://ci.appveyor.com/project/{}'.format(repo_slug),
'CI: Travis': 'https://travis-ci.com/{}'.format(repo_slug),
'Coverage: codecov': 'https://codecov.io/github/{}'.format(repo_slug),
'GitHub: issues': '{}/issues'.format(repo_url),
'GitHub: repo': repo_url,
},
license='MIT',
package_data={
'aiohttp_devtools.runserver': ['livereload.js'],
'aiohttp_devtools.start': start_package_data,
},
packages=[
'aiohttp_devtools',
'aiohttp_devtools.runserver',
'aiohttp_devtools.start',
],
zip_safe=True,
entry_points="""
[console_scripts]
adev=aiohttp_devtools.cli:cli
aiohttp-devtools=aiohttp_devtools.cli:cli
""",
install_requires=[
'aiohttp>=3.2.0',
'aiohttp_debugtoolbar>=0.4.0',
'click>=6.6',
'isort>=4.3.3',
'Jinja2>=2.10',
'watchgod>=0.2',
],
python_requires='>=3.5',
)