-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 1.18 KB
/
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
32
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
INSTALL_REQUIRES = [l.split('#')[0].strip() for l in fh if not l.strip().startswith('#')]
setuptools.setup(
name="longtail",
version="0.0.1",
author="Dmitry Mottl",
author_email="[email protected]",
license="MIT",
description="Transforms RV from the given empirical distribution to the standard normal",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Mottl/longtail",
keywords="random-variable-transformations probability-distribution probability-density-function",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
],
install_requires=INSTALL_REQUIRES,
)