-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (35 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pagure_importer',
packages=['pagure_importer'],
version='2.2.2',
description='CLI tool for imports to Pagure',
long_description=read('README.md'),
author='Vivek Anand',
author_email='[email protected]',
url='https://pagure.io/pagure-importer',
keywords=['pagure', 'importer', 'import'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
],
license='GNU General Public License v2.0',
entry_points={
'console_scripts': [
'pgimport = pagure_importer.app:app'
],
},
include_package_data=True,
install_requires=read('requirements.txt'),
zip_safe=False,
)