forked from dephell/dephell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
78 lines (73 loc) · 3.04 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.rst')
if os.path.exists(readme_path):
with open(readme_path, 'rb') as stream:
readme = stream.read().decode('utf8')
setup(
long_description=readme,
name='dephell',
version='0.7.8',
description='Dependency resolution for Python',
python_requires='>=3.5',
project_urls={
'homepage': 'https://dephell.org/',
'repository': 'https://github.com/dephell/dephell',
'documentation': 'https://dephell.org/docs/'
},
author='Gram',
author_email='[email protected]',
license='MIT',
keywords='dephell packaging dependency dependencies venv licenses pip poetry pipfile pipenv setuptools',
classifiers=[
'Development Status :: 4 - Beta', 'Environment :: Console',
'Framework :: Setuptools Plugin', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python', 'Topic :: Security',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules'
],
entry_points={'console_scripts': ['dephell = dephell.cli:entrypoint']},
packages=[
'dephell', 'dephell.actions', 'dephell.commands', 'dephell.config',
'dephell.controllers', 'dephell.converters', 'dephell.models',
'dephell.repositories', 'dephell.repositories._conda',
'dephell.repositories._git', 'dephell.repositories._warehouse'
],
package_data={'dephell': ['templates/*.j2', 'templates/*.sh']},
install_requires=[
'aiohttp', 'appdirs', 'attrs>=19.1.0',
'bowler; python_version >= "3.6"',
'bowler-py35>=0.9.1; python_version < "3.6"', 'cerberus>=1.3',
'dephell-archive>=0.1.5', 'dephell-discover>=0.2.6',
'dephell-licenses>=0.1.6', 'dephell-links>=0.1.4',
'dephell-markers>=1.0.0', 'dephell-pythons>=0.1.11',
'dephell-shells>=0.1.3', 'dephell-specifier>=0.1.7',
'dephell-venvs>=0.1.16', 'dephell-versioning', 'docker', 'dockerpty',
'fissix; python_version >= "3.6"',
'fissix-py35; python_version < "3.6"', 'flatdict', 'html5lib', 'jinja2',
'm2r', 'packaging', 'pip>=18.0', 'pygments', 'requests', 'ruamel.yaml',
'setuptools', 'tabulate', 'tomlkit', 'yaspin'
],
extras_require={
'full': ['aiofiles', 'autopep8', 'colorama', 'graphviz', 'yapf'],
'tests': ['aioresponses', 'pytest', 'requests-mock'],
'dev': [
'aioresponses', 'alabaster', 'flake8-isort', 'isort[pyproject]',
'pygments-github-lexers', 'pytest', 'recommonmark', 'requests-mock',
'sphinx'
],
'docs': [
'alabaster', 'pygments-github-lexers', 'recommonmark', 'sphinx'
]
},
)