summaryrefslogtreecommitdiff
path: root/setup.py
blob: 8782f3f018a62f1f302ce0867fa2588b458d9219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages

setup(
    name='actinide',
    version='0.1',
    packages=find_packages(),
    scripts=['bin/actinide-repl'],

    setup_requires=[
        'pytest-runner',
    ],

    tests_require=[
        'pytest',
        'hypothesis',
    ],
)