forked from mattyTokenomics/brownian_motion_generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 813 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='brownian_motion_generator',
version='1.1.0',
author='MattyTokenomics',
author_email='[email protected]',
description='Generating brownian motion random walks with custom skew, kurtosis, mean reversion, correlation, and non-normality.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/mattyTokenomics/brownian_motion_generator',
project_urls = {},
license='GNU General Public License v3.0',
packages=['brownian_motion_generator'],
include_package_data=True,
install_requires=['typing',
'dataclasses',
'sklearn',
'numpy',
'scipy',
'statsmodels',
'tqdm'],
)