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

lxml in both places

Changeset f747fcd8f872

Parent cc4b5e2bfb1d

committed by Profile picture of User 2722Daniel Lieberman <dlieberman@fogcreek.com>

Profile picture of User 2722 authored by Daniel Lieberman <dlieberman@fogcreek.com>

Changes to one file · Browse files at f747fcd8f872 Showing diff from parent cc4b5e2bfb1d Diff from another changeset...

Change 1 of 1 Show Changes Only setup.py Stacked
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
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
 import io    import setuptools      with io.open('README.txt', encoding='utf-8') as readme:   long_description = readme.read()    with io.open('LICENSE', encoding='utf-8') as readme:   license = readme.read()      setup_params = dict(   name='fogbugz',   use_scm_version=True,   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', + requires=['BeautifulSoup', 'lxml'],   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',   ],  )    if __name__ == '__main__':   setuptools.setup(**setup_params)