-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
13 lines (12 loc) · 737 Bytes
/
setup.py
File metadata and controls
13 lines (12 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
from distutils.core import setup
setup(
name = "statmapper",
author = "Mathieu Carriere",
author_email = "mathieu.carriere3@gmail.com",
packages = ["statmapper"],
description = "A set of functions for the statistical analysis of Mapper",
long_description_content_type = "text/markdown",
long_description = open("README.md", "r").read(),
url = "https://github.com/MathieuCarriere/statmapper/",
classifiers = ("Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent"),
)