-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
31 lines (27 loc) · 1020 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
from setuptools import find_packages, setup
def parse_requirements(file):
with open(file, "r") as f:
return [line.strip() for line in f if line.strip() and not line.startswith("#")]
setup(
name="GMMDetector",
version="0.1",
packages=find_packages(),
install_requires=parse_requirements("requirements.txt"),
entry_points={
"console_scripts": [
# if there are any scripts included in your package
],
},
author="Jan-Lucas Uslu",
author_email="janlucas.uslu@gmail.com",
description="A package for detecting 2D Material flakes using a Gaussian Mixture Model in images.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/jaluus/2DMatGMM", # if exists
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
],
)