Skip to content

Commit

Permalink
updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
brysontyrrell committed Sep 27, 2018
1 parent 0386462 commit fb52b89
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions setup.py
@@ -1,10 +1,10 @@
import re
from setuptools import setup
from setuptools import find_packages, setup

regex = re.compile(r'^__\w+__\s*=.*$')

about = dict()
with open('possum', 'r') as f:
with open('possum/__init__.py', 'r') as f:
dunders = list()
for l in f.readlines():
if regex.match(l):
Expand All @@ -23,18 +23,23 @@
author_email=about['__author_email__'],
url='https://github.com/brysontyrrell/Possum',
license=about['__license__'],
scripts=['possum'],
scripts=[
'bin/possum'
],
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
'boto3>=1.6.6',
'docker>=3.2.1',
'ruamel.yaml>=0.15.35'
],
extras_require={},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Build Tools'
]
],
zip_safe=False
)

0 comments on commit fb52b89

Please sign in to comment.