-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (51 loc) · 1.62 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
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
def read_file(name):
"""
Read file content
"""
f = open(name)
try:
return f.read()
except IOError:
print("could not read %r" % name)
f.close()
LONG_DESC = read_file('README.md') + '\n\n' + read_file('HISTORY.rst')
EXTRAS = {}
setup(
name='skbs',
version='2.2.1',
description='SKeleton BootStrap, a full-powered yet trivial to use and customize template based bootstrap or code generation tool',
long_description=LONG_DESC,
long_description_content_type='text/markdown',
author='Léo Flaventin Hauchecorne',
author_email='[email protected]',
url='https://github.com/hl037/skbs',
license='GPLv3',
packages=find_packages(),
test_suite=None,
include_package_data=True,
zip_safe=False,
install_requires=['click>=0.7', 'appdirs>=1.4.4', 'tempiny>=1.1'],
test_requires=['pytest>=6.2.2', 'pytest_datadir_ng>=1.1.1', 'pytest-cov>=2.11.1'],
extras_require=None,
entry_points={
'console_scripts':[
'skbs=skbs.cli:main',
]
},
classifiers=[
'Development Status :: 6 - Mature',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Other Scripting Engines',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Code Generators',
'Topic :: Text Processing',
'Topic :: Utilities',
],
**EXTRAS
)