-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 867 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 867 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
from setuptools import setup, find_packages
setup(name='python-repository-interface',
version='0.1.0',
description='Interface with several repositories vendors for common operations',
long_description='Interface with several repositories vendors for common operations',
author='Raphaël Yancey',
author_email='pypi@raphaelyancey.fr',
url='https://github.com/Ircam-Web/python-repository-interface',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
classifiers=[],
install_requires=[
"python-gitlab==1.7.0",
"PyGithub==1.58.2",
"markdown==3.2.1",
"pymdown-extensions==6.3",
"pygments==2.7.4",
"mdx_truly_sane_lists==1.2",
"docutils==0.14",
"pydash",
"bleach==4.1.0",
"beautifulsoup4==4.10.0"
]
)