You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
327 B

6 years ago
  1. from setuptools import setup
  2. setup(
  3. name='provoj',
  4. packages=['provoj'],
  5. description='Simple library to test the endpoints of an RESTful API.',
  6. url='https://github.com/arnaucode/provoj',
  7. author='arnaucode',
  8. author_email='arnaucode@gmail.com',
  9. version='0.0.0.1',
  10. scripts=['provoj/__init__.py']
  11. )