Skip to content

Commit

Permalink
Use setuptools, not distutils for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianfreyer committed Jul 22, 2015
1 parent 34c0315 commit fbb2ac2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@

# Setuptools build dir
/build
/dist
*.egg-info
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
#!/usr/bin/env python

from distutils.core import setup

from setuptools import setup

setup(name='rsatool',
version='1.0',
description='rsatool can be used to calculate RSA and RSA-CRT parameters',
author='Joerie de Gram',
author_email='j.de.gram@gmail.com',
url='https://github.com/ius/rsatool',
requires=['gmpy', 'pyasn1'],
install_requires=['gmpy', 'pyasn1'],
scripts=['rsatool.py']
)

0 comments on commit fbb2ac2

Please sign in to comment.