-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 872 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 872 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
from setuptools import setup, find_packages
from os import path
# Get the long description from the README file
with open(path.join(path.dirname(__file__), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='GitLabPy',
version='0.6.1',
py_modules=['GitLabPy'],
description="A Python module to sort GitLab's Webhooks",
long_description=long_description,
long_description_content_type="text/markdown",
author='Dixon Begay',
author_email='dixonbegay@gmail.com',
maintainer='Dixon Begay',
url='https://github.com/shadez95/GitLabPy',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Programming Language :: Python :: 3.5'
],
license='MIT',
keywords='gitlabpy',
install_requires=[]
)