1010from os .path import dirname
1111from os .path import join
1212from os .path import splitext
13- import re
14- import sys
1513
1614from setuptools import find_packages
1715from setuptools import setup
@@ -28,13 +26,17 @@ def read(*names, **kwargs):
2826 name = 'aboutcode-toolkit' ,
2927 version = '3.0.0.dev6' ,
3028 license = 'Apache-2.0' ,
31- description = ('AboutCode-toolkit is a tool to d_ocument the provenance (origin and license) of '
32- 'third-party software using small text files. '
33- 'Collect inventories, generate attribution documentation.' ),
34- long_description = ('AttributeCode provides a simple way to document the'
29+ description = (
30+ 'AboutCode-toolkit is a tool to document the provenance (origin and license) of '
31+ 'third-party software using small text files. '
32+ 'Collect inventories, generate attribution documentation.'
33+ ),
34+ long_description = (
35+ 'AttributeCode provides a simple way to document the'
3536 'provenance (i.e. origin and license) of software components that'
3637 'you use in your project. This documentation is stored in *.ABOUT'
37- 'files, side-by-side with the documented code.' ),
38+ 'files, side-by-side with the documented code.'
39+ ),
3840 author = 'Chin-Yeung Li, Jillian Daguil, Thomas Druez, Philippe Ombredanne and others.' ,
39414042 url = 'http://aboutcode.org' ,
@@ -64,7 +66,7 @@ def read(*names, **kwargs):
6466 'license' , 'about' , 'metadata' , 'package' , 'copyright' ,
6567 'attribution' , 'software' , 'inventory' ,
6668 ],
67- # FIXME: we SHOULD NOT use datafiles!!!! whcih is a mine field but
69+ # FIXME: we SHOULD NOT use datafiles!!!! which is a mine field but
6870 # only package data or use a MANIFEST.in instead for a sdist
6971 data_files = [('about' ,
7072 [
@@ -90,7 +92,7 @@ def read(*names, **kwargs):
9092 'license_expression >= 0.94, < 1.0' ,
9193 ],
9294 extras_require = {
93- ":python_version < '3.6'" : ['backports.csv' ],
95+ ":python_version < '3.6'" : ['backports.csv' ],
9496 },
9597 entry_points = {
9698 'console_scripts' : [
0 commit comments