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

setup(
    name='actinide',
    version='0.1',
    packages=find_packages(),

    setup_requires=[
        'pytest-runner',
    ],

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