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

Use setuptools_scm to cause files to be discovered from the source repo.

Changeset 661f4977a179

Parent 2c2c39bd0e26

by Jason R. Coombs

Changes to one file · Browse files at 661f4977a179 Showing diff from parent 2c2c39bd0e26 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
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
 import io    try:   from setuptools import setup  except ImportError:   from distutils.core import setup    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(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', + ],  )