-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1003 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 1003 Bytes
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
# use pipenv-setup to generate the requirement list
# https://pypi.org/project/pipenv-setup/
from setuptools import setup
from github2pandas_manager import __version__
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="github2pandas_manager",
version=__version__,
packages=["github2pandas_manager"],
license="BSD 2",
description="Aggregation of github activities on multiple repositories based on github2pandas",
long_description = long_description,
long_description_content_type="text/markdown",
author="Sebastian Zug, Mezekr Weldu, Galina Rudolf",
url="https://github.com/TUBAF-IFI-DiPiT/github2pandas_manager",
download_url="https://github.com/user/reponame/archive/v_01.tar.gz",
keywords=["git", "github", "git mining", "learning analytics"],
install_requires=[
"github2pandas",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8"
)