-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 1.02 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
# Based off https://medium.com/@joel.barmettler/how-to-upload-your-python-package-to-pypi-65edc5fe9c56
setuptools.setup(
name='Geit',
packages=setuptools.find_packages(),
version='0.0.2',
license='MIT',
description='Geit provides contribution insights on software group projects that use Git',
author='Khalid El Haji',
author_email='khalid.el.haji@gmail.com',
url='https://github.com/kelhaji/geit',
keywords=['GIT', 'INSIGHTS', 'STATISTICS', 'EDUCATIONAL', 'CONTRIBUTIONS', 'DATA'],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Topic :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Natural Language :: English'
],
python_requires='>=3.6',
)