-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 731 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 731 Bytes
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
"""A tool for generating Python project scaffolding based on
user defined templates.
"""
from setuptools import setup
with open('requirements.txt') as f:
requirements = f.readlines()
with open('README.md') as f:
description = f.read()
setup(
name='basement',
description="A python project scaffolding generator.",
version='0.2.2',
long_description=description,
packages=['basement'],
include_package_data=True,
author='Anthony Grimes',
author_email='i@raynes.me',
url='https://github.com/Raynes/basement',
license='MIT',
install_requires=requirements,
entry_points = """
[console_scripts]
basement=basement.__main__:ment
ment=basement.__main__:ment
"""
)