FogBugz » FogBugzPy A Python wrapper for the FogBugz API Read More
Clone URL:  
setupWindowsBuild.py
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
try: from ez_setup import use_setuptools use_setuptools() from setuptools import setup except ImportError: from distutils.core import setup from textwrap import dedent 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', version='1.0.5', py_modules=['fogbugz'], packages=['BeautifulSoup'], 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='Fog Creek Software', maintainer_email='customer-service@fogcreek.com', url='https://developers.kilnhg.com/Repo/FogBugz/Group/FogBugzPy', download_url='https://developers.kilnhg.com/Repo/FogBugz/Group/FogBugzPy', install_requires=['BeautifulSoup4', 'lxml'], 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', ], )