Skip to content
This repository was archived by the owner on Oct 10, 2020. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
#!/usr/bin/env python

# Author: Dan Walsh <dwalsh@redhat.com>
import sys
import os
from setuptools import setup
import pkg_resources
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cgwalters Please remove the unused import: pkg_resources


__version__ = pkg_resources.require('Atomic')[0].version
sys.path.insert(0, os.path.abspath(os.getcwd()))
from Atomic import __version__

with open('requirements.txt') as f:
requirements = f.read().splitlines()
Expand Down