FogBugz » FogBugzPy A Python wrapper for the FogBugz API Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master

Fix broken indentation

Changeset 7bf042fe3427

Parent e791bd9ae4fa

by Jason R. Coombs

Changes to one file · Browse files at 7bf042fe3427 Showing diff from parent e791bd9ae4fa Diff from another changeset...

Change 1 of 1 Show Entire File setup.py Stacked
 
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
 
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
@@ -4,48 +4,49 @@
     with io.open('README.txt', encoding='utf-8') as readme: - long_description = readme.read() + long_description = readme.read()    with io.open('LICENSE', encoding='utf-8') as readme: - license = readme.read() + license = readme.read()     -setuptools.setup(name='fogbugz_bis', - version='1.0', - py_modules=['fogbugz'], - license=license, - description='Python library for interacting with the FogBugz API', - long_description=long_description, - author='Fog Creek Software', - author_email='customer-service@fogcreek.com', - maintainer='YouGov, Plc.', - maintainer_email='open-source@yougov.com', - url='https://github.com/yougov/FogBugzPy', - install_requires=[ - 'BeautifulSoup4', - 'lxml', - 'six', - ], - requires='BeautifulSoup', - classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Intended Audience :: Developers', - 'Natural Language :: English', - 'Operating System :: MacOS :: MacOS X', - 'Operating System :: Microsoft :: Windows', - 'Operating System :: POSIX', - 'Operating System :: POSIX :: BSD', - 'Operating System :: POSIX :: Linux', - 'Programming Language :: Python', - 'Topic :: Internet :: WWW/HTTP', - 'Topic :: Software Development', - 'Topic :: Software Development :: Bug Tracking', - 'Topic :: Software Development :: Libraries', - 'Topic :: Software Development :: Libraries :: Python Modules', - 'Topic :: Software Development :: Version Control', - 'Topic :: Utilities', - ], - setup_requires=[ - 'setuptools_scm', - ], +setuptools.setup( + name='fogbugz_bis', + version='1.0', + py_modules=['fogbugz'], + license=license, + description='Python library for interacting with the FogBugz API', + long_description=long_description, + author='Fog Creek Software', + author_email='customer-service@fogcreek.com', + maintainer='YouGov, Plc.', + maintainer_email='open-source@yougov.com', + url='https://github.com/yougov/FogBugzPy', + install_requires=[ + 'BeautifulSoup4', + 'lxml', + 'six', + ], + requires='BeautifulSoup', + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Natural Language :: English', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX', + 'Operating System :: POSIX :: BSD', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Software Development', + 'Topic :: Software Development :: Bug Tracking', + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Software Development :: Version Control', + 'Topic :: Utilities', + ], + setup_requires=[ + 'setuptools_scm', + ],  )