-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 688 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, Extension
setup(
name='gitimport',
description='Import python packages directly from a git repository',
long_description='',
author='Matthias Bartelmeß',
author_email='mba@fourplusone.de',
url='https://github.com/fourplusone/gitimport',
py_modules=['gitimport'],
version='1.2.0',
install_requires=['pygit2'],
license='MIT',
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only']
)