summaryrefslogtreecommitdiff
path: root/setup.py
blob: 39cd03ce06ac8fee3b32797b4ddd13ca0d47e2a0 (plain)
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',
    ],
)