#8 Fix setup.py script and update .gitignore file
Merged 8 years ago by yangl1996. Opened 8 years ago by sayanchowdhury.
sayanchowdhury/libpagure master  into  master

file modified
+1 -9
@@ -1,18 +1,10 @@ 

- 

  .idea/.name

- 

  .idea/libpagure.iml

- 

  .idea/misc.xml

- 

  .idea/modules.xml

- 

  .idea/vcs.xml

- 

  .idea/workspace.xml

- 

  MANIFEST

- 

  dist/libpagure-v0.11.tar.gz

- 

  *.gz

+ build

file modified
+4 -1
@@ -1,6 +1,9 @@ 

  # -*- coding: utf-8 -*-

  

- from distutils.core import setup

+ try:

+     from setuptools import setup

+ except ImportError:

+     from distutils.core import setup

  

  

  setup(

no initial comment
  1. install_requires is not supported by distutils so replaced it with setuptools
Metadata