1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
from setuptools import setup, find_packages setup( name='actinide', version='0.1.1', packages=find_packages( exclude=['tests', 'tests.*', '*.__pycache__', '*.__pycache__.*'], ), scripts=['bin/actinide-repl'], setup_requires=[ 'pytest-runner', ], tests_require=[ 'pytest', 'hypothesis', ], )