summaryrefslogtreecommitdiff
path: root/setup.py
blob: a2fa7853541d720fa1667ac13a938a9134b3b087 (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.0',
    packages=find_packages(),
    scripts=['bin/actinide-repl'],

    setup_requires=[
        'pytest-runner',
    ],

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