-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
93 lines (91 loc) · 2.85 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = ''.join(f.readlines())
setup(
name='repocribro',
version='0.1.003',
keywords='github repositories sieve projects community',
description='Extensible sifting tool for information from GitHub repositories',
long_description=long_description,
author='Marek Suchánek',
author_email='[email protected]',
license='MIT',
url='https://github.com/MarekSuchanek/repocribro',
zip_safe=False,
packages=find_packages(),
package_data={
'repocribro': [
'static/*.js',
'static/*.css',
'static/fonts/*.*',
'static/pics/*.png',
'templates/*.html',
'templates/admin/*.html',
'templates/admin/tabs/*.html',
'templates/core/*.html',
'templates/core/org/*.html',
'templates/core/repo/*.html',
'templates/core/repo_owner/*.html',
'templates/core/search/*.html',
'templates/core/user/*.html',
'templates/error/*.html',
'templates/macros/*.html',
'templates/manage/*.html',
'templates/manage/dashboard/*.html',
]
},
entry_points={
'console_scripts': [
'repocribro = repocribro:cli',
],
'repocribro.ext': [
'repocribro-core = repocribro.ext_core:make_extension'
],
'flask.commands': [
'assign_role=repocribro.commands:assign_role',
'db_create=repocribro.commands:db_create',
'check_config=repocribro.commands:check_config',
'repocheck=repocribro.commands:repocheck',
],
},
install_requires=[
'configparser',
'Flask>=0.12',
'flask-login',
'flask-migrate',
'flask-principal',
'flask-restless',
'flask-sqlalchemy==2.1',
'iso8601',
'jinja2',
'pytz',
'python-dotenv',
'requests',
'sqlalchemy',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'betamax',
'pytest'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: Software Development :: Version Control',
],
)