Skip to content

Commit

Permalink
fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mogproject committed Jan 14, 2015
1 parent fc0432b commit 659ff83
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

17 changes: 9 additions & 8 deletions setup.py
Expand Up @@ -10,21 +10,22 @@ def get_version():
return __import__('artifactcli').__version__


def get_requirements(path):
import os

with open(path) as f:
return f.read().splitlines()

setup(
name='artifact-cli',
version=get_version(),
description='Private Artifact Manager using Amazon S3',
author='mogproject',
author_email='mogproj@gmail.com',
url='https://github.com/mogproject/artifact-cli',
install_requires=get_requirements('requirements.txt'),
tests_require=get_requirements('test-requirements.txt'),
install_requires=[
'pytz',
'python-dateutil',
'GitPython>=0.3.5',
'boto',
],
tests_require=[
'moto',
],
package_dir={'': SRC_DIR},
packages=find_packages(SRC_DIR),
include_package_data=True,
Expand Down
2 changes: 0 additions & 2 deletions test-requirements.txt

This file was deleted.

0 comments on commit 659ff83

Please sign in to comment.