-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (37 loc) · 1.34 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
43
44
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.rst") as readme_file:
readme = readme_file.read()
requirements = ['colorama', 'GitPython', 'progress']
setup(
author="0xComposure",
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: Utilities'
],
description='Pull all your git repositories.',
install_requires=requirements,
license='MIT',
long_description_content_type='',
long_description=readme + "\n\n",
include_package_data=True,
keywords="gpullall",
name="gpullall",
packages=find_packages(),
entry_points={
"console_scripts": ["gpullall = gpullall.__main__:init"]
},
setup_requires=requirements,
url="https://github.com/0xcomposure/gpullall",
version="1.0.0",
zip_safe=False,
)