-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.37 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
33
34
35
36
37
38
39
40
41
42
"""Mudag setup script."""
from setuptools import find_packages, setup
# Read the long description from README.md
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="mudag",
version="0.1.0",
description="A tool for analyzing research software repositories with focus on workflow languages",
long_description=long_description,
long_description_content_type="text/markdown",
author="Aaron Strachardt",
url="https://github.com/aaronstrachardt/mudag",
project_urls={
"Bug Tracker": "https://github.com/aaronstrachardt/mudag/issues",
},
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[],
python_requires=">=3.7",
entry_points={
"console_scripts": [
"mudag=mudag.cli.cli:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Quality Assurance",
],
)