-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (31 loc) · 888 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·40 lines (31 loc) · 888 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
31
32
33
34
35
36
37
38
39
40
#! /usr/bin/python3
""" Package information for goodmake. """
from setuptools import setup
with open("README.rst", "r") as fh:
theReadMe = fh.read()
with open("version.txt", "r") as fh:
theVersion = fh.read()
setup(
name='goodmake',
py_modules=['goodmake'],
version=theVersion,
description='A simpler build system',
long_description=theReadMe,
long_description_content_type='text/markdown',
author='Ames Cornish',
author_email='goodmake@montebellopartners.com',
license="GPLv3",
url='https://github.com/AmesCornish/GoodMake',
keywords=['make', 'build', 'redo'],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'goodmake=goodmake:main',
],
},
scripts=[
'scripts/goodmake_clean.sh',
'scripts/goodmake_lib.sh',
'scripts/goodmake_every.sh',
],
)