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

Always use setuptools

Changeset e791bd9ae4fa

Parent 661f4977a179

by Jason R. Coombs

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

Change 1 of 2 Show Entire File setup.py Stacked
 
1
2
3
4
5
6
 
 
7
8
9
 
12
13
14
15
 
16
17
18
 
1
2
 
 
 
 
3
4
5
6
7
 
10
11
12
 
13
14
15
16
@@ -1,9 +1,7 @@
 import io   -try: - from setuptools import setup -except ImportError: - from distutils.core import setup +import setuptools +    with io.open('README.txt', encoding='utf-8') as readme:   long_description = readme.read() @@ -12,7 +10,7 @@
  license = readme.read()     -setup(name='fogbugz_bis', +setuptools.setup(name='fogbugz_bis',   version='1.0',   py_modules=['fogbugz'],   license=license,