|
1 | 1 | import os |
2 | 2 | from setuptools import setup |
3 | 3 |
|
4 | | -with open('README.md') as f: |
| 4 | +with open("README.md") as f: |
5 | 5 | readme = f.read() |
6 | 6 |
|
7 | 7 | setup( |
8 | 8 | name="sgit", |
9 | 9 | version="0.1.0", |
10 | | - description='CLI tool ', |
| 10 | + description="CLI tool ", |
11 | 11 | long_description=readme, |
12 | | - long_description_content_type='text/markdown', |
| 12 | + long_description_content_type="text/markdown", |
13 | 13 | author="Johan Andersson", |
14 | 14 | |
15 | | - maintainer='Johan Andersson', |
16 | | - maintainer_email='[email protected]', |
| 15 | + maintainer="Johan Andersson", |
| 16 | + maintainer_email="[email protected]", |
17 | 17 | license="Apache License 2.0", |
18 | | - packages=['sgit'], |
19 | | - url='http://github.com/dynamist/sgit', |
| 18 | + packages=["sgit"], |
| 19 | + url="http://github.com/dynamist/sgit", |
20 | 20 | entry_points={ |
21 | | - 'console_scripts': [ |
22 | | - 'sgit = sgit.cli:cli_entrypoint', |
23 | | - 'git-sub = sgit.cli:cli_entrypoint', |
24 | | - ], |
| 21 | + "console_scripts": [ |
| 22 | + "sgit = sgit.cli:cli_entrypoint", |
| 23 | + "git-sub = sgit.cli:cli_entrypoint", |
| 24 | + ] |
25 | 25 | }, |
26 | | - install_requires=[ |
27 | | - 'docopt>=0.6.2', |
28 | | - 'ruamel.yaml>=0.16.0', |
29 | | - 'gitpython>=3.1.0', |
30 | | - ], |
| 26 | + install_requires=["docopt>=0.6.2", "ruamel.yaml>=0.16.0", "gitpython>=3.1.0"], |
31 | 27 | python_requires=">=3.6", |
32 | | - extras_require={ |
33 | | - 'dev': [ |
34 | | - "pytest", |
35 | | - "pytest-mock", |
36 | | - "pylint", |
37 | | - "mock" |
38 | | - ], |
39 | | - }, |
| 28 | + extras_require={"dev": ["pytest", "pytest-mock", "pylint", "mock"]}, |
40 | 29 | classifiers=[ |
41 | 30 | # 'Development Status :: 1 - Planning', |
42 | 31 | # 'Development Status :: 2 - Pre-Alpha', |
43 | | - 'Development Status :: 3 - Alpha', |
| 32 | + "Development Status :: 3 - Alpha", |
44 | 33 | # 'Development Status :: 4 - Beta', |
45 | 34 | # 'Development Status :: 5 - Production/Stable', |
46 | 35 | # 'Development Status :: 6 - Mature', |
47 | 36 | # 'Development Status :: 7 - Inactive', |
48 | | - 'Intended Audience :: Developers', |
49 | | - 'Operating System :: OS Independent', |
| 37 | + "Intended Audience :: Developers", |
| 38 | + "Operating System :: OS Independent", |
50 | 39 | "License :: OSI Approved :: Apache Software License", |
51 | | - 'Environment :: Console', |
52 | | - 'Programming Language :: Python', |
53 | | - 'Programming Language :: Python :: 3', |
54 | | - 'Programming Language :: Python :: 3.6', |
55 | | - 'Programming Language :: Python :: 3.7', |
56 | | - 'Programming Language :: Python :: 3.8', |
| 40 | + "Environment :: Console", |
| 41 | + "Programming Language :: Python", |
| 42 | + "Programming Language :: Python :: 3", |
| 43 | + "Programming Language :: Python :: 3.6", |
| 44 | + "Programming Language :: Python :: 3.7", |
| 45 | + "Programming Language :: Python :: 3.8", |
57 | 46 | "Natural Language :: English", |
58 | 47 | ], |
59 | 48 | ) |
0 commit comments