-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 861 Bytes
/
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
import os.path
import setuptools
parent_dir_path = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(parent_dir_path, 'readme.md'), 'r') as f:
readme_content = f.read()
setuptools.setup(
name = 'sapyens',
version = '0.3.0',
description = 'SQLAlchemy & Pyramid enhancements',
long_description = readme_content,
author = 'Philipp Saveliev',
author_email = '[email protected]',
url = 'https://github.com/fillest/sapyens',
package_dir = {'': 'src'},
packages = setuptools.find_packages('src'),
include_package_data = True,
zip_safe = False,
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Pyramid',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
entry_points = """\
[pyramid.scaffold]
sapyens=sapyens.scaffolds:SapyensTemplate
"""
)