-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
31 lines (27 loc) · 808 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
long_description = open(
os.path.join(
os.path.dirname(__file__),
'README.md'
)
).read()
setup(
name='foresight',
author='Adam Schwalm',
version='0.1',
license='LICENSE',
url='https://github.com/ALSchwalm/foresight',
download_url='https://github.com/ALSchwalm/foresight/tarball/0.1',
description='A library for predicting the output of random number generators.',
long_description=long_description,
packages=find_packages('.', exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[],
entry_points={
'console_scripts': [
'foresee = foresight.foresee:main',
]
},
keywords=['predict', 'random', 'rng']
)